Changeset 00c2de63 in mainline for uspace/lib/posix/sys/wait.h
- Timestamp:
- 2011-07-29T14:50:22Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b6759f4
- Parents:
- 6c69d19 (diff), 7ae249d (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
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/sys/wait.h
r6c69d19 r00c2de63 38 38 #include "types.h" 39 39 40 #undef WIFEXITED 41 #undef WEXITSTATUS 42 #undef WIFSIGNALED 43 #undef WTERMSIG 44 #define WIFEXITED(status) __posix_wifexited(status) 45 #define WEXITSTATUS(status) __posix_wexitstatus(status) 46 #define WIFSIGNALED(status) __posix_wifsignaled(status) 47 #define WTERMSIG(status) __posix_wtermsig(status) 48 49 extern int __posix_wifexited(int status); 50 extern int __posix_wexitstatus(int status); 51 extern int __posix_wifsignaled(int status); 52 extern int __posix_wtermsig(int status); 53 40 54 extern posix_pid_t posix_wait(int *stat_ptr); 41 55 extern posix_pid_t posix_waitpid(posix_pid_t pid, int *stat_ptr, int options); … … 43 57 #ifndef LIBPOSIX_INTERNAL 44 58 #define wait posix_wait 45 #define waitpid 59 #define waitpid posix_waitpid 46 60 #endif 47 61
Note:
See TracChangeset
for help on using the changeset viewer.