diff options
author | marcel <marcel@FreeBSD.org> | 2008-08-13 00:03:35 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2008-08-13 00:03:35 +0000 |
commit | 54448b618602f6c026fe340bc507bb06807f53f6 (patch) | |
tree | c98782a2fa9ae169711a5faf91d967edb851b613 /lib/libthread_db | |
parent | fcf41a718f3a8d7be85995a33114716f81fecdf1 (diff) | |
download | FreeBSD-src-54448b618602f6c026fe340bc507bb06807f53f6.zip FreeBSD-src-54448b618602f6c026fe340bc507bb06807f53f6.tar.gz |
Change the type of ti_traceme from a char to an int as its
address is passed to ps_pread for reading sizeof(int) bytes.
Diffstat (limited to 'lib/libthread_db')
-rw-r--r-- | lib/libthread_db/thread_db.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthread_db/thread_db.h b/lib/libthread_db/thread_db.h index 3a1fc7f..3508eba 100644 --- a/lib/libthread_db/thread_db.h +++ b/lib/libthread_db/thread_db.h @@ -184,7 +184,7 @@ typedef struct { int ti_pri; lwpid_t ti_lid; char ti_db_suspended; - char ti_traceme; + int ti_traceme; sigset_t ti_sigmask; sigset_t ti_pending; psaddr_t ti_tls; |