Changeset 55fe220 in mainline for uspace/app/sbi/src/os/helenos.c


Ignore:
Timestamp:
2019-08-07T04:56:41Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
d4ec49e
Parents:
5044114
git-author:
Michal Koutný <xm.koutny+hos@…> (2015-10-12 22:21:42)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-07 04:56:41)
Message:

taskman: Modify existing callers of task_wait API
Conflicts:

uspace/app/bdsh/exec.c
uspace/app/getterm/getterm.c
uspace/app/sbi/src/os/helenos.c
uspace/app/vlaunch/vlaunch.c
uspace/lib/pcut/src/os/helenos.c
uspace/srv/hid/remcons/remcons.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/os/helenos.c

    r5044114 r55fe220  
    255255        int retval;
    256256
     257        task_wait_set(&twait, TASK_WAIT_EXIT);
    257258        rc = task_spawnv(&tid, &twait, cmd[0], (char const *const *) cmd);
    258259        if (rc != EOK) {
     
    263264
    264265        /* XXX Handle exit status and return value. */
    265         rc = task_wait(&twait, &texit, &retval);
     266        rc = task_wait(&twait, NULL, NULL);
    266267        (void) rc;
    267268
Note: See TracChangeset for help on using the changeset viewer.