From 6c492b1e782c551baf4c05c20939358a8da42964 Mon Sep 17 00:00:00 2001 From: Jim Keniston Date: Fri, 3 Oct 2008 15:44:32 -0700 Subject: PR 6850 Fix handling of fork with uretprobe_instances outstanding. Add regression test. --- testsuite/systemtap.base/bz6850.stp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 testsuite/systemtap.base/bz6850.stp (limited to 'testsuite/systemtap.base/bz6850.stp') diff --git a/testsuite/systemtap.base/bz6850.stp b/testsuite/systemtap.base/bz6850.stp new file mode 100644 index 00000000..d6f41862 --- /dev/null +++ b/testsuite/systemtap.base/bz6850.stp @@ -0,0 +1,7 @@ +#! stap -p4 +probe process("./bz6850").function("*").call { + printf("%s called\n", probefunc()) +} +probe process("./bz6850").function("*").return { + printf("%s returns\n", probefunc()) +} -- cgit