From 6a9d879cfe30b3336e723942bd8f187436866f18 Mon Sep 17 00:00:00 2001 From: davidxu Date: Thu, 27 Apr 2006 08:25:13 +0000 Subject: s/long/int. --- lib/libthr/thread/thr_private.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libthr/thread') 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 \ -- cgit v1.1