diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2007-10-08 21:15:01 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2007-10-08 21:15:01 -0400 |
commit | 38d7fc30b108ec4a9e74ddb33d945cce1bd5c4c6 (patch) | |
tree | 7a211e51e13e7e631306d90b17decda4497676b6 /runtime/uprobes/uprobes.h | |
parent | 9d33454315110680fda3a926465c3002a0521431 (diff) | |
parent | 7574941533c7ca9a4b1715cbfd785f732be48266 (diff) | |
download | systemtap-steved-38d7fc30b108ec4a9e74ddb33d945cce1bd5c4c6.tar.gz systemtap-steved-38d7fc30b108ec4a9e74ddb33d945cce1bd5c4c6.tar.xz systemtap-steved-38d7fc30b108ec4a9e74ddb33d945cce1bd5c4c6.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'runtime/uprobes/uprobes.h')
-rw-r--r-- | runtime/uprobes/uprobes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/uprobes/uprobes.h b/runtime/uprobes/uprobes.h index 574bee62..84dd0b2a 100644 --- a/runtime/uprobes/uprobes.h +++ b/runtime/uprobes/uprobes.h @@ -72,11 +72,11 @@ struct uretprobe_instance { unsigned long reserved2; }; -static int register_uprobe(struct uprobe *u); -static void unregister_uprobe(struct uprobe *u); +extern int register_uprobe(struct uprobe *u); +extern void unregister_uprobe(struct uprobe *u); /* For runtime, assume uprobes support includes uretprobes. */ -static int register_uretprobe(struct uretprobe *rp); -static void unregister_uretprobe(struct uretprobe *rp); +extern int register_uretprobe(struct uretprobe *rp); +extern void unregister_uretprobe(struct uretprobe *rp); #ifdef UPROBES_IMPLEMENTATION |