s/long/int.

This commit is contained in:
David Xu 2006-04-27 08:25:13 +00:00
parent 245116cafc
commit 0a5fa45560

View File

@ -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 \