summaryrefslogtreecommitdiff
path: root/tools/jit_all_the_things.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/jit_all_the_things.c')
-rwxr-xr-xtools/jit_all_the_things.c11
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