mirror of
https://github.com/fluencelabs/redis
synced 2025-05-23 23:51:19 +00:00
7 lines
129 B
Bash
7 lines
129 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for nm in `cat $1` ; do
|
||
|
n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
|
||
|
echo "#define je_${n} JEMALLOC_N(${n})"
|
||
|
done
|