diff options
| author | spv <aquaticvegetable@gmail.com> | 2022-04-20 14:10:27 -0400 |
|---|---|---|
| committer | spv <aquaticvegetable@gmail.com> | 2022-04-20 14:10:27 -0400 |
| commit | 7caa231e0b0fa607080586725fbbc9628a1cc031 (patch) | |
| tree | e22a643aefbc73c703b90f2454c0f75374696399 /tools/jit_all_the_things.c | |
hello and welcome back to hell
Diffstat (limited to 'tools/jit_all_the_things.c')
| -rwxr-xr-x | tools/jit_all_the_things.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/jit_all_the_things.c b/tools/jit_all_the_things.c new file mode 100755 index 0000000..d955ea1 --- /dev/null +++ b/tools/jit_all_the_things.c @@ -0,0 +1,11 @@ +#include <sys/types.h>
+#include <stdio.h>
+
+#define PT_TRACE_ME 0
+int ptrace(int, pid_t, caddr_t, int);
+int main(int argc, char* argv[]) {
+ ptrace(PT_TRACE_ME, 0, NULL, 0);
+ exit(0);
+
+ return 0;
+}
\ No newline at end of file |
