diff options
author | Pedro Alves <palves@redhat.com> | 2018-06-25 17:18:18 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2018-06-25 17:43:14 +0100 |
commit | 75cbc781e371279f4403045be93b07fd8fe7fde5 (patch) | |
tree | a1db05b4ab9639d2184e348135eecb7cd2c95c19 /gdb/inferior.h | |
parent | b7a08269ca53323c5fe190370da281358dfee6b2 (diff) | |
download | fsf-binutils-gdb-75cbc781e371279f4403045be93b07fd8fe7fde5.zip fsf-binutils-gdb-75cbc781e371279f4403045be93b07fd8fe7fde5.tar.gz fsf-binutils-gdb-75cbc781e371279f4403045be93b07fd8fe7fde5.tar.bz2 |
gdb: For macOS, s/thread_info/struct thread_info/
The macOS build currently fails with several instances of this problem:
In file included from ../../src/gdb/darwin-nat.h:22:0,
from ../../src/gdb/i386-darwin-nat.c:37:
../../src/gdb/gdbthread.h:376:59: error: type/value mismatch at argument 1 in template parameter list for 'template<class T, class Policy> class gdb::ref_ptr'
= gdb::ref_ptr<thread_info, refcounted_object_ref_policy>;
^
../../src/gdb/gdbthread.h:376:59: note: expected a type, got 'thread_info'
../../src/gdb/gdbthread.h:396:28: error: variable or field 'delete_thread' declared void
extern void delete_thread (thread_info *thread);
^
(...)
This is because there's a thread_info function in the Darwin/XNU/mach API:
http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/thread_info.html
Fix this in the same way it had been fixed in commit 7aabaf9d4ad5
("Create private_thread_info hierarchy"), by adding an explicit
"struct" keyword.
gdb/ChangeLog:
2018-06-25 Pedro Alves <palves@redhat.com>
* gdbthread.h (thread_info_ref, delete_thread)
(delete_thread_silent, first_thread_of_inferior)
(any_thread_of_inferior, switch_to_thread)
(enable_thread_stack_temporaries)
(thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
(get_last_thread_stack_temporary)
(value_in_thread_stack_temporaries, can_access_registers_thread):
Spell out "struct thread_info" instead of just "thread_info".
* inferior.h (notice_new_inferior): Likewise.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 3f4d7a5..bfad91d 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -177,7 +177,7 @@ extern void delete_longjmp_breakpoint_cleanup (void *arg); extern void detach_command (const char *, int); -extern void notice_new_inferior (thread_info *, int, int); +extern void notice_new_inferior (struct thread_info *, int, int); extern struct value *get_return_value (struct value *function, struct type *value_type); |