summaryrefslogtreecommitdiff
path: root/libgc/include/libgc-mono-debugger.h
diff options
context:
space:
mode:
Diffstat (limited to 'libgc/include/libgc-mono-debugger.h')
-rw-r--r--libgc/include/libgc-mono-debugger.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/libgc/include/libgc-mono-debugger.h b/libgc/include/libgc-mono-debugger.h
deleted file mode 100644
index bbf4439183..0000000000
--- a/libgc/include/libgc-mono-debugger.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef LIBGC_MONO_DEBUGGER_H
-#define LIBGC_MONO_DEBUGGER_H
-
-#if defined(_IN_LIBGC) || defined(_IN_THE_MONO_DEBUGGER)
-
-typedef struct
-{
- void (* initialize) (void);
-
- void (* thread_created) (pthread_t tid, void *stack_ptr);
- void (* thread_exited) (pthread_t tid, void *stack_ptr);
-
- void (* stop_world) (void);
- void (* start_world) (void);
-} GCThreadFunctions;
-
-extern GCThreadFunctions *gc_thread_vtable;
-
-extern void *
-GC_mono_debugger_get_stack_ptr (void);
-
-#else
-#error "This header is only intended to be used by the Mono Debugger"
-#endif
-
-#endif
-