/usr/share/systemtap/runtime/linux/autoconf-smpcall-5args.c is in systemtap-common 2.6-0.2.
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 10 11 12 | #include <linux/kernel.h>
#include <linux/smp.h>
void foo (void *arg)
{
(void) arg;
}
void bar (void)
{
smp_call_function_single (0, &foo, 0, 1, 0);
}
|