diff options
author | hunt <hunt> | 2005-08-31 18:09:52 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-08-31 18:09:52 +0000 |
commit | a6c632f50fdaf53107dbf3e89a875c3f71e0fca5 (patch) | |
tree | bae038c6926a56a98403d54e3f350d6b4215e5e8 /runtime/user/runtime.h | |
parent | b4ee3f928bfe97666d987bcaddd926c51132e3d6 (diff) | |
download | systemtap-steved-a6c632f50fdaf53107dbf3e89a875c3f71e0fca5.tar.gz systemtap-steved-a6c632f50fdaf53107dbf3e89a875c3f71e0fca5.tar.xz systemtap-steved-a6c632f50fdaf53107dbf3e89a875c3f71e0fca5.zip |
2005-08-31 Martin Hunt <hunt@redhat.com>
* emul.h (_stp_kallsyms_lookup): Renamed from kallsyms_lookup.
* runtime.h: Add prototype for exit();
* copy.c: New file. Just some empty functions.
Diffstat (limited to 'runtime/user/runtime.h')
-rw-r--r-- | runtime/user/runtime.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/user/runtime.h b/runtime/user/runtime.h index 9d098fc7..1d6d5307 100644 --- a/runtime/user/runtime.h +++ b/runtime/user/runtime.h @@ -24,6 +24,7 @@ #include <linux/kallsyms.h> #include <linux/percpu.h> + #ifdef DEBUG #define dbug(args...) \ { \ @@ -39,6 +40,8 @@ #undef memcpy #define memcpy __builtin_memcpy +void exit(int status); + #define NEED_STAT_LOCKS 0 #define NEED_COUNTER_LOCKS 0 |