Changeset 33043 in vbox for trunk/src/VBox/Runtime/r0drv/linux
- Timestamp:
- Oct 11, 2010 3:56:04 PM (14 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/semevent-r0drv-linux.c
r33033 r33043 178 178 AssertPtrReturn(pThis, VERR_INVALID_PARAMETER); 179 179 AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("%p u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_PARAMETER); 180 AssertReturn(RTSEMWAIT_FLAGS_ARE_VALID(fFlags), VERR_INVALID_PARAMETER); 180 181 rtR0SemEventLnxRetain(pThis); 181 182 -
trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c
r33033 r33043 60 60 /** @} */ 61 61 62 62 63 /******************************************************************************* 63 64 * Structures and Typedefs * … … 71 72 uint32_t volatile u32Magic; 72 73 /** The object state bit and generation counter. 73 * The generation counter is incremented every time the object is */ 74 * The generation counter is incremented every time the object is 75 * signalled. */ 74 76 uint32_t volatile fStateAndGen; 75 77 /** Reference counter. */ … … 241 243 AssertPtrReturn(pThis, VERR_INVALID_PARAMETER); 242 244 AssertMsgReturn(pThis->u32Magic == RTSEMEVENTMULTI_MAGIC, ("%p u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_PARAMETER); 245 AssertReturn(RTSEMWAIT_FLAGS_ARE_VALID(fFlags), VERR_INVALID_PARAMETER); 243 246 rtR0SemEventMultiLnxRetain(pThis); 244 247
Note:
See TracChangeset
for help on using the changeset viewer.