Revert r181651, which changed the ABI, and use a temp variable instead.

Suggested by:	attilio
This commit is contained in:
Dag-Erling Smørgrav 2009-06-09 12:32:10 +00:00
parent f7bde4e836
commit 18860a1cdf
2 changed files with 4 additions and 2 deletions

View File

@ -457,6 +457,7 @@ pt_thr_get_info(const td_thrhandle_t *th, td_thrinfo_t *info)
{
const td_thragent_t *ta = th->th_ta;
struct ptrace_lwpinfo linfo;
int traceme;
int state;
int ret;
@ -470,7 +471,8 @@ pt_thr_get_info(const td_thrhandle_t *th, td_thrinfo_t *info)
if (ret != 0)
return (TD_ERR);
ret = thr_pread_int(ta, th->th_thread + ta->thread_off_report_events,
&info->ti_traceme);
&traceme);
info->ti_traceme = traceme;
if (ret != 0)
return (TD_ERR);
ret = ps_pread(ta->ph, th->th_thread + ta->thread_off_event_mask,

View File

@ -184,7 +184,7 @@ typedef struct {
int ti_pri;
lwpid_t ti_lid;
char ti_db_suspended;
int ti_traceme;
char ti_traceme;
sigset_t ti_sigmask;
sigset_t ti_pending;
psaddr_t ti_tls;