diff options
Diffstat (limited to 'gdb/testsuite/gdb.base/jit-attach-pie.c')
-rw-r--r-- | gdb/testsuite/gdb.base/jit-attach-pie.c | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/gdb/testsuite/gdb.base/jit-attach-pie.c b/gdb/testsuite/gdb.base/jit-attach-pie.c index 55a03f7..fd08233 100644 --- a/gdb/testsuite/gdb.base/jit-attach-pie.c +++ b/gdb/testsuite/gdb.base/jit-attach-pie.c @@ -19,29 +19,7 @@ #include <stdint.h> #include <pthread.h> -struct jit_code_entry -{ - struct jit_code_entry *next_entry; - struct jit_code_entry *prev_entry; - const char *symfile_addr; - uint64_t symfile_size; -}; - -struct jit_descriptor -{ - uint32_t version; - /* This type should be jit_actions_t, but we use uint32_t - to be explicit about the bitwidth. */ - uint32_t action_flag; - struct jit_code_entry *relevant_entry; - struct jit_code_entry *first_entry; -}; - -struct jit_descriptor __jit_debug_descriptor = { 1, 0, 0, 0 }; - -void __jit_debug_register_code() -{ -} +#include "jit-protocol.h" static void * thread_proc (void *arg) |