diff options
author | davidxu <davidxu@FreeBSD.org> | 2004-08-03 02:23:06 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2004-08-03 02:23:06 +0000 |
commit | 6f2afa324d1065b683deec76bffd5785ba2d4989 (patch) | |
tree | ecab1eab8d4a6ebfbf396cb5ab2e5d6c501e078f /lib/libpthread/thread/thr_private.h | |
parent | 4b4df6655a6958a27b64cae8ba605a069de6592f (diff) | |
download | FreeBSD-src-6f2afa324d1065b683deec76bffd5785ba2d4989.zip FreeBSD-src-6f2afa324d1065b683deec76bffd5785ba2d4989.tar.gz |
s/TMDF_DONOTRUNUSER/TMDF_SUSPEND/g
Dicussed with: deischen
Diffstat (limited to 'lib/libpthread/thread/thr_private.h')
-rw-r--r-- | lib/libpthread/thread/thr_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_private.h b/lib/libpthread/thread/thr_private.h index 0b0e366..7a3ae50 100644 --- a/lib/libpthread/thread/thr_private.h +++ b/lib/libpthread/thread/thr_private.h @@ -972,7 +972,7 @@ do { \ (((thrd)->flags & THR_FLAGS_SUSPENDED) != 0)) #define THR_IS_EXITING(thrd) (((thrd)->flags & THR_FLAGS_EXITING) != 0) #define DBG_CAN_RUN(thrd) (((thrd)->tcb->tcb_tmbx.tm_dflags & \ - TMDF_DONOTRUNUSER) == 0) + TMDF_SUSPEND) == 0) extern int __isthreaded; |