Changeset 44858 in vbox
- Timestamp:
- Feb 28, 2013 2:03:08 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/semrw-lockless-generic.cpp
r44529 r44858 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT Testcase - RTSemXRoads, generic implementation.3 * IPRT - Read-Write Semaphore, Generic, lockless variant. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2009-201 1Oracle Corporation7 * Copyright (C) 2009-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 69 69 /** The number of reads made by the current writer. */ 70 70 uint32_t volatile cWriterReads; 71 /** The number of reads made by the current writer. */ 71 /** The number of recursions made by the current writer. (The initial grabbing 72 * of the lock counts as the first one.) */ 72 73 uint32_t volatile cWriteRecursions; 73 74
Note:
See TracChangeset
for help on using the changeset viewer.