Changeset acf6b55 in mainline for kernel/generic/src/ipc/kbox.c


Ignore:
Timestamp:
2018-07-05T16:20:43Z (6 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:
058c240
Parents:
bd9e868
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-04 23:32:32)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-05 16:20:43)
Message:

Make it possible for uspace to determine why SYS_IPC_WAIT returned.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/kbox.c

    rbd9e868 racf6b55  
    168168
    169169        while (!done) {
    170                 call_t *call = ipc_wait_for_call(&TASK->kb.box, SYNCH_NO_TIMEOUT,
    171                     SYNCH_FLAGS_NONE);
     170                call_t *call = NULL;
     171                (void) ipc_wait_for_call(&TASK->kb.box, SYNCH_NO_TIMEOUT,
     172                    SYNCH_FLAGS_NONE, &call);
    172173
    173174                if (call == NULL)
Note: See TracChangeset for help on using the changeset viewer.