diff options
author | hunt <hunt> | 2007-03-14 22:07:49 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-03-14 22:07:49 +0000 |
commit | 6880012f6194a5908698a9f375d7f69231ffbef5 (patch) | |
tree | 7f369bdf6371a0752463dca52533f199d9e28e9e /runtime/stpd/librelay.h | |
parent | 437040c327fc848c8a8191679b3258cd992fd854 (diff) | |
download | systemtap-steved-6880012f6194a5908698a9f375d7f69231ffbef5.tar.gz systemtap-steved-6880012f6194a5908698a9f375d7f69231ffbef5.tar.xz systemtap-steved-6880012f6194a5908698a9f375d7f69231ffbef5.zip |
2007-03-14 Martin Hunt <hunt@redhat.com>
* stpd: Remove directory.
* relayfs: Remove directory.
Diffstat (limited to 'runtime/stpd/librelay.h')
-rw-r--r-- | runtime/stpd/librelay.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/runtime/stpd/librelay.h b/runtime/stpd/librelay.h deleted file mode 100644 index 15ef6c40..00000000 --- a/runtime/stpd/librelay.h +++ /dev/null @@ -1,33 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <ctype.h> -#include <unistd.h> -#include <dirent.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <string.h> -#include <stdint.h> - -#include "../transport/transport_msgs.h" - -#ifdef DEBUG -#define dbug(args...) {fprintf(stderr,"%s:%d ",__FUNCTION__, __LINE__); fprintf(stderr,args); } -#else -#define dbug(args...) ; -#endif /* DEBUG */ - -/* - * functions - */ -int init_stp(int print_summary); -int stp_main_loop(void); -int send_request(int type, void *data, int len); -void cleanup_and_exit (int); -int do_module(void *); -void do_kernel_symbols(void); - -/* - * variables - */ -extern int control_channel; |