summaryrefslogtreecommitdiffstats
path: root/lib/libthread_db/libpthread_db.c
diff options
context:
space:
mode:
authordavidxu <davidxu@FreeBSD.org>2004-08-03 02:23:06 +0000
committerdavidxu <davidxu@FreeBSD.org>2004-08-03 02:23:06 +0000
commit6f2afa324d1065b683deec76bffd5785ba2d4989 (patch)
treeecab1eab8d4a6ebfbf396cb5ab2e5d6c501e078f /lib/libthread_db/libpthread_db.c
parent4b4df6655a6958a27b64cae8ba605a069de6592f (diff)
downloadFreeBSD-src-6f2afa324d1065b683deec76bffd5785ba2d4989.zip
FreeBSD-src-6f2afa324d1065b683deec76bffd5785ba2d4989.tar.gz
s/TMDF_DONOTRUNUSER/TMDF_SUSPEND/g
Dicussed with: deischen
Diffstat (limited to 'lib/libthread_db/libpthread_db.c')
-rw-r--r--lib/libthread_db/libpthread_db.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libthread_db/libpthread_db.c b/lib/libthread_db/libpthread_db.c
index a2fae3b..c5ef5ce 100644
--- a/lib/libthread_db/libpthread_db.c
+++ b/lib/libthread_db/libpthread_db.c
@@ -487,9 +487,9 @@ pt_dbsuspend(const td_thrhandle_t *th, int suspend)
if (ret != 0)
return (P2T(ret));
if (suspend)
- dflags |= TMDF_DONOTRUNUSER;
+ dflags |= TMDF_SUSPEND;
else
- dflags &= ~TMDF_DONOTRUNUSER;
+ dflags &= ~TMDF_SUSPEND;
ret = ps_pwrite(ta->ph,
tmbx_addr + offsetof(struct kse_thr_mailbox, tm_dflags),
&dflags, sizeof(dflags));
@@ -594,7 +594,7 @@ pt_thr_get_info(const td_thrhandle_t *th, td_thrinfo_t *info)
break;
}
- info->ti_db_suspended = ((dflags & TMDF_DONOTRUNUSER) != 0);
+ info->ti_db_suspended = ((dflags & TMDF_SUSPEND) != 0);
info->ti_type = TD_THR_USER;
info->ti_pri = pt.active_priority;
info->ti_sigmask = pt.sigmask;
OpenPOWER on IntegriCloud