Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/thread/futex.c

    r45c8eea r508b0df1  
    4949 * @param val   Initialization value.
    5050 *
    51  * @return      Error code.
    5251 */
    53 errno_t futex_initialize(futex_t *futex, int val)
     52void futex_initialize(futex_t *futex, int val)
    5453{
    5554        atomic_store_explicit(&futex->val, val, memory_order_relaxed);
    56         futex->whandle = CAP_NIL;
    57         return futex_allocate_waitq(futex);
    5855}
    5956
Note: See TracChangeset for help on using the changeset viewer.