Changeset 96563 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Aug 31, 2022 3:34:36 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/netbsd/sleepqueue-r0drv-netbsd.h
r96407 r96563 191 191 pWait->sq_lock = NULL; 192 192 193 int error = sleepq_block(pWait->iTimeout, pWait->fInterruptible); 193 int error = sleepq_block(pWait->iTimeout, pWait->fInterruptible 194 #if __NetBSD_Prereq__(9,99,98) /* a bit later, actually... */ 195 , &vbox_syncobj 196 #endif 197 ); 194 198 if (error == EWOULDBLOCK) { 195 199 if (!pWait->fIndefinite) {
Note:
See TracChangeset
for help on using the changeset viewer.