mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-04 18:36:32 +00:00
2011-07-25 Paul Pluzhnikov <ppluzhnikov@google.com>
* linux-thread-db.c (thread_from_lwp): Initialize th.th_unique.
This commit is contained in:
parent
179809c050
commit
6cb9b55b98
@ -1,3 +1,7 @@
|
||||
2011-07-25 Paul Pluzhnikov <ppluzhnikov@google.com>
|
||||
|
||||
* linux-thread-db.c (thread_from_lwp): Initialize th.th_unique.
|
||||
|
||||
2011-07-25 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* breakpoint.h (print_recreate_thread): Declare.
|
||||
|
@ -431,6 +431,9 @@ thread_from_lwp (ptid_t ptid)
|
||||
struct thread_db_info *info;
|
||||
struct thread_get_info_inout io = {0};
|
||||
|
||||
/* Just in case td_ta_map_lwp2thr doesn't initialize it completely. */
|
||||
th.th_unique = 0;
|
||||
|
||||
/* This ptid comes from linux-nat.c, which should always fill in the
|
||||
LWP. */
|
||||
gdb_assert (GET_LWP (ptid) != 0);
|
||||
|
Loading…
Reference in New Issue
Block a user