1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00

define UMUTEX_CONTESTED as an unsigned integer.

This commit is contained in:
David Xu 2006-11-11 14:00:39 +00:00
parent 58c7bab332
commit d8efa3cc8c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=164179

View File

@ -47,7 +47,7 @@ struct umtx {
#define USYNC_PROCESS_SHARED 0x0001 /* Process shared sync objs */
#define UMUTEX_UNOWNED 0x0
#define UMUTEX_CONTESTED 0x80000000
#define UMUTEX_CONTESTED 0x80000000U
#define UMUTEX_ERROR_CHECK 0x0002 /* Error-checking mutex */
#define UMUTEX_PRIO_INHERIT 0x0004 /* Priority inherited mutex */