summaryrefslogtreecommitdiffstats
path: root/test/debug.c
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2022-12-11 02:51:47 +0100
committerLouis Burda <quent.burda@gmail.com>2022-12-11 02:51:47 +0100
commit5e99ea7f111134c7a1c7103590b711d59edafa9b (patch)
tree0d27dc1e30a77123f31dc6dee678063f5258fe7d /test/debug.c
parent05a4fbf680b806327a9c53525e9d8716dcdb55f3 (diff)
downloadcachepc-5e99ea7f111134c7a1c7103590b711d59edafa9b.tar.gz
cachepc-5e99ea7f111134c7a1c7103590b711d59edafa9b.zip
Adding support for exec based tracking (unstable)
Diffstat (limited to 'test/debug.c')
-rw-r--r--test/debug.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/debug.c b/test/debug.c
deleted file mode 100644
index 7a1e259..0000000
--- a/test/debug.c
+++ /dev/null
@@ -1,26 +0,0 @@
-#include "cachepc/uapi.h"
-
-#include <sys/ioctl.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <fcntl.h>
-#include <stdint.h>
-#include <err.h>
-#include <fcntl.h>
-#include <unistd.h>
-
-int
-main(int argc, const char **argv)
-{
- uint32_t arg;
- int fd, ret;
-
- fd = open("/dev/kvm", O_RDONLY);
- if (fd < 0) err(1, "open");
-
- arg = argc > 1 ? atoi(argv[1]) : 1;
- ret = ioctl(fd, KVM_CPC_DEBUG, &arg);
- if (ret == -1) err(1, "ioctl DEBUG");
-
- close(fd);
-}