Changeset 5229 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Oct 10, 2007 4:19:32 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c
r5228 r5229 133 133 * @param fInterruptible Whether it's an interruptible wait or not. 134 134 */ 135 static int rtSemEvent Wait(PRTSEMEVENTMULTIINTERNAL pThis, unsigned cMillies, bool fInterruptible)135 static int rtSemEventMultiWait(PRTSEMEVENTMULTIINTERNAL pThis, unsigned cMillies, bool fInterruptible) 136 136 { 137 137 /* … … 190 190 if (pThis->fState) 191 191 return VINF_SUCCESS; 192 return rtSemEvent Wait(pThis, cMillies, false /* fInterruptible */);192 return rtSemEventMultiWait(pThis, cMillies, false /* fInterruptible */); 193 193 } 194 194 … … 204 204 if (pThis->fState) 205 205 return VINF_SUCCESS; 206 return rtSemEvent Wait(pThis, cMillies, true /* fInterruptible */);207 } 208 206 return rtSemEventMultiWait(pThis, cMillies, true /* fInterruptible */); 207 } 208
Note:
See TracChangeset
for help on using the changeset viewer.