aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2006-04-27 08:25:13 +0000
committerDavid Xu <davidxu@FreeBSD.org>2006-04-27 08:25:13 +0000
commit0a5fa4556098bbff3f1d305b30ab3de96d88b444 (patch)
tree691f4f9214b75f0fadaf0fa94c845d694b60494b /lib
parent245116cafcdf2dd82e9c2059ec153f496da6e795 (diff)
downloadsrc-0a5fa4556098bbff3f1d305b30ab3de96d88b444.tar.gz
src-0a5fa4556098bbff3f1d305b30ab3de96d88b444.zip
s/long/int.
Notes
Notes: svn path=/head/; revision=158074
Diffstat (limited to 'lib')
-rw-r--r--lib/libthr/thread/thr_private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h
index 9863a3babb0e..0453864a9c8b 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 \