Changeset 132ab5d1 in mainline for uspace/lib/posix/source/sys/wait.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/lib/posix/source/sys/wait.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/sys/wait.c
r8bfb163 r132ab5d1 42 42 #include "libc/task.h" 43 43 #include "posix/assert.h" 44 #include "posix/errno.h" 44 45 #include <errno.h> 46 45 47 #include "posix/limits.h" 46 48 #include "posix/signal.h" … … 100 102 int retval; 101 103 102 int rc = task_wait_task_id((task_id_t) pid, &texit, &retval); 103 104 if (rc < 0) { 104 if (failed(task_wait_task_id((task_id_t) pid, &texit, &retval))) { 105 105 /* Unable to retrieve status. */ 106 errno = -rc;107 106 return (posix_pid_t) -1; 108 107 }
Note:
See TracChangeset
for help on using the changeset viewer.
