Changeset 2d22049 in mainline for libc/generic/ipc.c


Ignore:
Timestamp:
2006-06-02T12:29:08Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bd929cfb
Parents:
bf9afa07
Message:

Sync with last kernel commit (the ability to specify whether a sleep is interruptible or not).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/generic/ipc.c

    rbf9afa07 r2d22049  
    361361
    362362        do {
    363                 callid = ipc_wait_cycle(call, usec, SYNCH_BLOCKING);
     363                callid = ipc_wait_cycle(call, usec, SYNCH_FLAGS_NONE);
    364364        } while (callid & IPC_CALLID_ANSWERED);
    365365
     
    378378
    379379        do {
    380                 callid = ipc_wait_cycle(call, SYNCH_NO_TIMEOUT, SYNCH_NON_BLOCKING);
     380                callid = ipc_wait_cycle(call, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NON_BLOCKING);
    381381        } while (callid & IPC_CALLID_ANSWERED);
    382382
Note: See TracChangeset for help on using the changeset viewer.