kernel/tools/perf/trace/beauty/prctl_option.sh
.. .. @@ -1,9 +1,10 @@ 1 1 #!/bin/sh 2 +# SPDX-License-Identifier: LGPL-2.12 3 3 4 [ $# -eq 1 ] && header_dir=$1 || header_dir=tools/include/uapi/linux/ 4 5 5 6 printf "static const char *prctl_options[] = {\n" 6 -regex='^#define[[:space:]]+PR_([GS]ET\w+)[[:space:]]*([[:xdigit:]]+).*'7 +regex='^#define[[:space:]]+PR_(\w+)[[:space:]]*([[:xdigit:]]+).*'7 8 egrep $regex ${header_dir}/prctl.h | grep -v PR_SET_PTRACER | \ 8 9 sed -r "s/$regex/\2 \1/g" | \ 9 10 sort -n | xargs printf "\t[%s] = \"%s\",\n"