PERFORCE change 74219 for review
John Baldwin
jhb at FreeBSD.org
Thu Mar 31 14:06:53 PST 2005
http://perforce.freebsd.org/chv.cgi?CH=74219
Change 74219 by jhb at jhb_slimer on 2005/03/31 22:06:15
Oof, I managed to rebreak mtx_owned() in last submit.
Affected files ...
.. //depot/projects/smpng/sys/sys/mutex.h#53 edit
Differences ...
==== //depot/projects/smpng/sys/sys/mutex.h#53 (text+ko) ====
@@ -322,7 +322,7 @@
#define mtx_initialized(m) ((m)->mtx_object.lo_flags & LO_INITIALIZED)
-#define mtx_owned(m) (((m)->mtx_lock & ~MTX_FLAGMASK) == (uintptr_t)curthread)
+#define mtx_owned(m) (((m)->mtx_lock & MTX_FLAGMASK) == (uintptr_t)curthread)
#define mtx_recursed(m) ((m)->mtx_recurse != 0)
More information about the p4-projects
mailing list