/usr/share/systemtap/runtime/autoconf-kallsyms-on-each-symbol.c is in systemtap-common 1.6-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | #include <linux/kallsyms.h>
#ifdef CONFIG_PPC64
#error kallsyms_on_each_symbol optimization not supported on ppc64.
#endif
void foo (void) {
(void) kallsyms_on_each_symbol(NULL, NULL);
}
|