Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/synch/syswaitq.c

    rfc0de8c r111b9b9  
    159159#endif
    160160
    161         errno_t rc = waitq_sleep_timeout(kobj->waitq, timeout,
    162             SYNCH_FLAGS_INTERRUPTIBLE | flags, NULL);
     161        errno_t rc = _waitq_sleep_timeout(kobj->waitq, timeout,
     162            SYNCH_FLAGS_INTERRUPTIBLE | flags);
    163163
    164164#ifdef CONFIG_UDEBUG
     
    183183                return (sys_errno_t) ENOENT;
    184184
    185         waitq_wakeup(kobj->waitq, WAKEUP_FIRST);
     185        waitq_wake_one(kobj->waitq);
    186186
    187187        kobject_put(kobj);
Note: See TracChangeset for help on using the changeset viewer.