diff options
author | Dave Brolley <brolley@redhat.com> | 2009-06-15 11:57:03 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-06-15 11:57:03 -0400 |
commit | 148b5d924e05124eae22a27ef670c480de76553a (patch) | |
tree | 894d71a8cc22f2c37cc1313154db9a8d1abb8b15 /testsuite/systemtap.base/uprobes_exe.c | |
parent | c3a47b9b2c204849646eda60e6fff9ea7625f122 (diff) | |
parent | d438dd9bc070216016e02f4958fe9dea571712c9 (diff) | |
download | systemtap-steved-148b5d924e05124eae22a27ef670c480de76553a.tar.gz systemtap-steved-148b5d924e05124eae22a27ef670c480de76553a.tar.xz systemtap-steved-148b5d924e05124eae22a27ef670c480de76553a.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.base/uprobes_exe.c')
-rw-r--r-- | testsuite/systemtap.base/uprobes_exe.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/testsuite/systemtap.base/uprobes_exe.c b/testsuite/systemtap.base/uprobes_exe.c deleted file mode 100644 index b4811335..00000000 --- a/testsuite/systemtap.base/uprobes_exe.c +++ /dev/null @@ -1,29 +0,0 @@ -/* uprobes_lib test case - * Copyright (C) 2009, Red Hat Inc. - * - * This file is part of systemtap, and is free software. You can - * redistribute it and/or modify it under the terms of the GNU General - * Public License (GPL); either version 2, or (at your option) any - * later version. - */ - -#include <unistd.h> - -// function from our library -int lib_main (void); - -void -main_func (int foo) -{ - if (foo > 1) - main_func (foo - 1); - else - lib_main(); -} - -int -main (int argc, char *argv[], char *envp[]) -{ - main_func (3); - return 0; -} |