blob: 60ef8640ee701c61ef232fd0ecc37f86cf006418 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
header_dir=$1
printf "static const char *madvise_advices[] = {\n"
regex='^[[:space:]]*#[[:space:]]*define[[:space:]]+MADV_([[:alnum:]_]+)[[:space:]]+([[:digit:]]+)[[:space:]]*.*'
egrep $regex ${header_dir}/mman-common.h | \
sed -r "s/$regex/\2 \1/g" | \
sort -n | xargs printf "\t[%s] = \"%s\",\n"
printf "};\n"
|