Changeset d054ad3 in mainline for uspace/lib/c/generic/async/server.c


Ignore:
Timestamp:
2018-07-09T18:36:33Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2d56e2e
Parents:
87337dc5
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-05 16:39:15)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-09 18:36:33)
Message:

Remove the obsolete callback abstraction from low level IPC.

File:
1 edited

Legend:

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

    r87337dc5 rd054ad3  
    10881088        assert(call);
    10891089
    1090         if (call->flags & IPC_CALL_ANSWERED)
     1090        if (call->flags & IPC_CALL_ANSWERED) {
     1091                /* Answer to a call made by us. */
     1092                async_reply_received(call);
    10911093                return;
     1094        }
    10921095
    10931096        if (call->cap_handle == CAP_NIL) {
     
    11951198
    11961199                ipc_call_t call;
    1197                 errno_t rc = ipc_wait_cycle(&call, next_timeout, flags);
     1200                errno_t rc = ipc_wait(&call, next_timeout, flags);
    11981201
    11991202                atomic_dec(&threads_in_ipc_wait);
Note: See TracChangeset for help on using the changeset viewer.