VirtualBox

Ignore:
Timestamp:
Sep 7, 2009 7:10:55 PM (15 years ago)
Author:
vboxsync
Message:

FreeBSD: Fix R0 semevent implementation for FreeBSD 7.x

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c

    r22677 r22819  
    207207
    208208                if (fInterruptible)
    209                     rc = sleepq_timedwait_sig(pEventInt, 0);
     209                    rc = SLEEPQ_TIMEDWAIT_SIG(pEventInt);
    210210                else
    211                     rc = sleepq_timedwait(pEventInt, 0);
     211                    rc = SLEEPQ_TIMEDWAIT(pEventInt);
    212212            }
    213213            else
     
    216216
    217217                if (fInterruptible)
    218                     rc = sleepq_wait_sig(pEventInt, 0);
     218                    rc = SLEEPQ_WAIT_SIG(pEventInt);
    219219                else
    220220                {
    221221                    rc = 0;
    222                     sleepq_wait(pEventInt, 0);
     222                    SLEEPQ_WAIT(pEventInt);
    223223                }
    224224            }
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