aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2008-08-13 00:03:35 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2008-08-13 00:03:35 +0000
commitfc0053df42328db53ddeae98485960e3e23deb9a (patch)
treec98782a2fa9ae169711a5faf91d967edb851b613 /lib
parent17693f561cbeb4d5aa4205669a2576232c77a8aa (diff)
downloadsrc-fc0053df42328db53ddeae98485960e3e23deb9a.tar.gz
src-fc0053df42328db53ddeae98485960e3e23deb9a.zip
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.
Notes
Notes: svn path=/head/; revision=181651
Diffstat (limited to 'lib')
-rw-r--r--lib/libthread_db/thread_db.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthread_db/thread_db.h b/lib/libthread_db/thread_db.h
index 3a1fc7fec93e..3508eba35eac 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;