do_fork() is no longer defined on x86, so probe _do_fork() instead.
Fixes: 3033f14ab7
("clone: support passing tls argument via C ...")
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
13 lines
309 B
Bash
13 lines
309 B
Bash
#!/bin/sh
|
|
# description: Kprobe dynamic event - adding and removing
|
|
|
|
[ -f kprobe_events ] || exit_unsupported # this is configurable
|
|
|
|
echo 0 > events/enable
|
|
echo > kprobe_events
|
|
echo p:myevent _do_fork > kprobe_events
|
|
grep myevent kprobe_events
|
|
test -d events/kprobes/myevent
|
|
echo > kprobe_events
|
|
clear_trace
|