From ca1f47dd519a74e3e77b887f56a72661183f975a Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Sun, 2 Aug 2015 11:45:38 -0400 Subject: Margo's review: rename "us" to "wr", it's the writers and readers field combined, rename "val" to "ticket", fix/reword some comments. --- src/include/mutex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/mutex.h') diff --git a/src/include/mutex.h b/src/include/mutex.h index a64973647dc..117ac534846 100644 --- a/src/include/mutex.h +++ b/src/include/mutex.h @@ -33,7 +33,7 @@ typedef union { /* Read/write lock */ #else uint64_t u; struct { - uint32_t us; + uint32_t wr; /* Writers and readers */ } i; struct { uint16_t writers; /* Now serving for writers */ -- cgit v1.2.1