diff options
author | davidxu <davidxu@FreeBSD.org> | 2006-04-27 08:25:13 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2006-04-27 08:25:13 +0000 |
commit | 6a9d879cfe30b3336e723942bd8f187436866f18 (patch) | |
tree | 691f4f9214b75f0fadaf0fa94c845d694b60494b | |
parent | 66d0fee031ed44d54ee9e1a183fbe75c37a6e158 (diff) | |
download | FreeBSD-src-6a9d879cfe30b3336e723942bd8f187436866f18.zip FreeBSD-src-6a9d879cfe30b3336e723942bd8f187436866f18.tar.gz |
s/long/int.
-rw-r--r-- | lib/libthr/thread/thr_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index 9863a3b..0453864 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -117,7 +117,7 @@ struct pthread_mutex { int m_protocol; TAILQ_HEAD(mutex_head, pthread) m_queue; struct pthread *m_owner; - long m_flags; + int m_flags; int m_count; int m_refcount; @@ -152,7 +152,7 @@ struct pthread_mutex_attr { enum pthread_mutextype m_type; int m_protocol; int m_ceiling; - long m_flags; + int m_flags; }; #define PTHREAD_MUTEXATTR_STATIC_INITIALIZER \ |