summaryrefslogtreecommitdiff
path: root/tools/pkg/5/orangeutils/src/orangedebugenable.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/pkg/5/orangeutils/src/orangedebugenable.c')
-rw-r--r--tools/pkg/5/orangeutils/src/orangedebugenable.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/pkg/5/orangeutils/src/orangedebugenable.c b/tools/pkg/5/orangeutils/src/orangedebugenable.c
deleted file mode 100644
index 113b330..0000000
--- a/tools/pkg/5/orangeutils/src/orangedebugenable.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <unistd.h>
-#include <stdio.h>
-
-int main(int argc, char *argv[]) {
- if (argc < 2) {
- printf("Usage: %s <pid> \n", argv[0]);
- return 1;
- }
-
- int pid = atoi(argv[1]);
-
- asm volatile("syscall" : : "a"(65), "D"(pid) : "rcx","r11");
-
- return 0;
-} \ No newline at end of file