Changeset 3334 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Jun 30, 2007 12:23:25 PM (18 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/os2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/os2/semevent-r0drv-os2.cpp
r2981 r3334 175 175 rc = KernBlock((ULONG)pEventInt, 176 176 cMillies == RT_INDEFINITE_WAIT ? SEM_INDEFINITE_WAIT : cMillies, 177 BLOCK_SPINLOCK | ( fInterruptible ? BLOCK_UNINTERRUPTABLE : 0),177 BLOCK_SPINLOCK | (!fInterruptible ? BLOCK_UNINTERRUPTABLE : 0), 178 178 &pEventInt->Spinlock, 179 179 &ulData); -
trunk/src/VBox/Runtime/r0drv/os2/semeventmulti-r0drv-os2.cpp
r2981 r3334 177 177 rc = KernBlock((ULONG)pEventMultiInt, 178 178 cMillies == RT_INDEFINITE_WAIT ? SEM_INDEFINITE_WAIT : cMillies, 179 BLOCK_SPINLOCK | ( fInterruptible ? BLOCK_UNINTERRUPTABLE : 0),179 BLOCK_SPINLOCK | (!fInterruptible ? BLOCK_UNINTERRUPTABLE : 0), 180 180 &pEventMultiInt->Spinlock, 181 181 &ulData);
Note:
See TracChangeset
for help on using the changeset viewer.