Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/async.c

    r8619f25 rdb24058  
    106106
    107107atomic_t async_futex = FUTEX_INITIALIZER;
    108 
    109 /** Number of threads waiting for IPC in the kernel. */
    110 atomic_t threads_in_ipc_wait = { 0 };
    111108
    112109/** Structures of this type represent a waiting fibril. */
     
    686683               
    687684                futex_up(&async_futex);
    688 
    689                 atomic_inc(&threads_in_ipc_wait);
    690685               
    691686                ipc_call_t call;
     
    693688                    SYNCH_FLAGS_NONE);
    694689               
    695                 atomic_dec(&threads_in_ipc_wait);
    696 
    697690                if (!callid) {
    698691                        handle_expired_timeouts();
Note: See TracChangeset for help on using the changeset viewer.