Changeset 22819 in vbox for trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c
- Timestamp:
- Sep 7, 2009 7:10:55 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c
r22677 r22819 207 207 208 208 if (fInterruptible) 209 rc = sleepq_timedwait_sig(pEventInt, 0);209 rc = SLEEPQ_TIMEDWAIT_SIG(pEventInt); 210 210 else 211 rc = sleepq_timedwait(pEventInt, 0);211 rc = SLEEPQ_TIMEDWAIT(pEventInt); 212 212 } 213 213 else … … 216 216 217 217 if (fInterruptible) 218 rc = sleepq_wait_sig(pEventInt, 0);218 rc = SLEEPQ_WAIT_SIG(pEventInt); 219 219 else 220 220 { 221 221 rc = 0; 222 sleepq_wait(pEventInt, 0);222 SLEEPQ_WAIT(pEventInt); 223 223 } 224 224 }
Note:
See TracChangeset
for help on using the changeset viewer.