summaryrefslogtreecommitdiffstats
path: root/devtools/find-type-definition
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-12-03 19:23:35 +0100
committerMattias Andrée <maandree@kth.se>2023-12-03 19:23:35 +0100
commitc131f122778c62f920a99bbf854ced4a37ee8b03 (patch)
tree14c933f98f4d64dffb0a594bc40dd5121c6c5a8e /devtools/find-type-definition
downloadlibsyscalls-c131f122778c62f920a99bbf854ced4a37ee8b03.tar.gz
libsyscalls-c131f122778c62f920a99bbf854ced4a37ee8b03.tar.bz2
libsyscalls-c131f122778c62f920a99bbf854ced4a37ee8b03.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'devtools/find-type-definition')
-rwxr-xr-xdevtools/find-type-definition8
1 files changed, 8 insertions, 0 deletions
diff --git a/devtools/find-type-definition b/devtools/find-type-definition
new file mode 100755
index 0000000..26e19f2
--- /dev/null
+++ b/devtools/find-type-definition
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+type="$1"
+shift 1
+
+grep -r '\(define\s\+\(__kernel_\)\?'"$type"'\s\|typedef\s.*\s\(__kernel_\)\?'"$type"'\b\)' "$@" \
+| sed 's/^\([^:]*\):/\x1b[35m\1\x1b[m /' \
+| sed 's/\(__kernel_\)\?'"$type"'/\x1b[1;31m&\x1b[m/g'