diff options
author | Roland McGrath <roland@gnu.org> | 2002-12-05 03:45:55 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-12-05 03:45:55 +0000 |
commit | ac110745dcbef340ea4f5808f96a95bb306df3ae (patch) | |
tree | ebe92c13038e1d3f7a0a78a7e1e6895dc37ea1a5 /nptl_db/thread_db.h | |
parent | 44de49707eeab00096e360cb8873a24d90ff8a56 (diff) | |
download | glibc-ac110745dcbef340ea4f5808f96a95bb306df3ae.tar glibc-ac110745dcbef340ea4f5808f96a95bb306df3ae.tar.gz glibc-ac110745dcbef340ea4f5808f96a95bb306df3ae.tar.bz2 glibc-ac110745dcbef340ea4f5808f96a95bb306df3ae.zip |
* td_thr_get_info.c (td_thr_get_info): ti_tid is pthread_t, not a PID.
* thread_db.h (td_thrinfo_t): Comment fix.
* td_ta_map_lwp2thr.c: Moved to ../nptl/sysdeps/i386/.
Diffstat (limited to 'nptl_db/thread_db.h')
-rw-r--r-- | nptl_db/thread_db.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl_db/thread_db.h b/nptl_db/thread_db.h index acb0607662..ee7179c6dc 100644 --- a/nptl_db/thread_db.h +++ b/nptl_db/thread_db.h @@ -275,7 +275,7 @@ typedef struct td_thrinfo intptr_t ti_sp; /* Unused. */ short int ti_flags; /* Unused. */ int ti_pri; /* Thread priority. */ - lwpid_t ti_lid; /* Unused. */ + lwpid_t ti_lid; /* Kernel PID for this thread. */ sigset_t ti_sigmask; /* Signal mask. */ unsigned char ti_traceme; /* Nonzero if event reporting enabled. */ |