1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-06 18:29:47 +00:00

s/long/int.

This commit is contained in:
David Xu 2006-04-27 08:25:13 +00:00
parent 245116cafc
commit 0a5fa45560
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=158074

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 \