aboutsummaryrefslogtreecommitdiff
path: root/lib/stop-other-threads.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stop-other-threads.h')
-rw-r--r--lib/stop-other-threads.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/stop-other-threads.h b/lib/stop-other-threads.h
deleted file mode 100644
index 1f6e639..0000000
--- a/lib/stop-other-threads.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#pragma once
-#include <stdint.h>
-
-/* Stop the world; return token to be used for applying PC patches and resuming. */
-int stop_other_threads(void **token_ptr);
-int apply_pc_patch_callback(void *token,
- uintptr_t (*pc_patch_callback)(void *ctx, uintptr_t pc),
- void *ctx);
-int resume_other_threads(void *token);