diff options
author | davidxu <davidxu@FreeBSD.org> | 2006-10-13 12:45:21 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2006-10-13 12:45:21 +0000 |
commit | 4fdad8dba6bb9c5c6485c0ceb1422208548eedc8 (patch) | |
tree | 254b50d8810263bcb01fe8e04fb26672c2f2043a /lib/libthr/thread | |
parent | 73c8098699f6536ec7b99f611c04abf0d8f51889 (diff) | |
download | FreeBSD-src-4fdad8dba6bb9c5c6485c0ceb1422208548eedc8.zip FreeBSD-src-4fdad8dba6bb9c5c6485c0ceb1422208548eedc8.tar.gz |
Use type pthread_state for thread state.
Diffstat (limited to 'lib/libthr/thread')
-rw-r--r-- | lib/libthr/thread/thr_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index 0099a94..2e370b9 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -371,7 +371,7 @@ struct pthread { sigset_t sigmask; /* Thread state: */ - umtx_t state; + enum pthread_state state; /* * Error variable used instead of errno. The function __error() |