VirtualBox

Changeset 3334 in vbox for trunk/src/VBox/Runtime/r0drv


Ignore:
Timestamp:
Jun 30, 2007 12:23:25 PM (18 years ago)
Author:
vboxsync
Message:

Fixed inverted interrupt[ia]ble test.

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  
    175175        rc = KernBlock((ULONG)pEventInt,
    176176                       cMillies == RT_INDEFINITE_WAIT ? SEM_INDEFINITE_WAIT : cMillies,
    177                        BLOCK_SPINLOCK | (fInterruptible ? BLOCK_UNINTERRUPTABLE : 0),
     177                       BLOCK_SPINLOCK | (!fInterruptible ? BLOCK_UNINTERRUPTABLE : 0),
    178178                       &pEventInt->Spinlock,
    179179                       &ulData);
  • trunk/src/VBox/Runtime/r0drv/os2/semeventmulti-r0drv-os2.cpp

    r2981 r3334  
    177177        rc = KernBlock((ULONG)pEventMultiInt,
    178178                       cMillies == RT_INDEFINITE_WAIT ? SEM_INDEFINITE_WAIT : cMillies,
    179                        BLOCK_SPINLOCK | (fInterruptible ? BLOCK_UNINTERRUPTABLE : 0),
     179                       BLOCK_SPINLOCK | (!fInterruptible ? BLOCK_UNINTERRUPTABLE : 0),
    180180                       &pEventMultiInt->Spinlock,
    181181                       &ulData);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette