[823a929] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Petr Koupy
|
---|
| 3 | * Copyright (c) 2011 Jiri Zarevucky
|
---|
| 4 | * All rights reserved.
|
---|
| 5 | *
|
---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
---|
| 7 | * modification, are permitted provided that the following conditions
|
---|
| 8 | * are met:
|
---|
| 9 | *
|
---|
| 10 | * - Redistributions of source code must retain the above copyright
|
---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | * documentation and/or other materials provided with the distribution.
|
---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
---|
| 16 | * derived from this software without specific prior written permission.
|
---|
| 17 | *
|
---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 | /** @addtogroup libposix
|
---|
| 31 | * @{
|
---|
| 32 | */
|
---|
[4cf8ca6] | 33 | /** @file Support for waiting.
|
---|
[823a929] | 34 | */
|
---|
| 35 |
|
---|
| 36 | #define LIBPOSIX_INTERNAL
|
---|
[fdf97f6] | 37 | #define __POSIX_DEF__(x) posix_##x
|
---|
[823a929] | 38 |
|
---|
| 39 | #include "../internal/common.h"
|
---|
[a3da2b2] | 40 | #include "posix/sys/wait.h"
|
---|
[823a929] | 41 |
|
---|
[a3da2b2] | 42 | #include "libc/task.h"
|
---|
[e8d3c6f5] | 43 | #include <assert.h>
|
---|
[0d0b319] | 44 |
|
---|
| 45 | #include <errno.h>
|
---|
| 46 |
|
---|
[a3da2b2] | 47 | #include "posix/limits.h"
|
---|
| 48 | #include "posix/signal.h"
|
---|
[eb1edb0] | 49 |
|
---|
| 50 | int __posix_wifexited(int status) {
|
---|
| 51 | return status != INT_MIN;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | int __posix_wexitstatus(int status) {
|
---|
| 55 | assert(__posix_wifexited(status));
|
---|
| 56 | return status;
|
---|
| 57 | }
|
---|
| 58 |
|
---|
| 59 | int __posix_wifsignaled(int status) {
|
---|
| 60 | return status == INT_MIN;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | int __posix_wtermsig(int status) {
|
---|
| 64 | assert(__posix_wifsignaled(status));
|
---|
| 65 | /* There is no way to distinguish reason
|
---|
| 66 | * for unexpected termination at the moment.
|
---|
| 67 | */
|
---|
| 68 | return SIGABRT;
|
---|
| 69 | }
|
---|
| 70 |
|
---|
[823a929] | 71 | /**
|
---|
[2a53f71] | 72 | * Wait for any child process to stop or terminate.
|
---|
[823a929] | 73 | *
|
---|
[2a53f71] | 74 | * @param stat_ptr Location of the final status code of the child process.
|
---|
| 75 | * @return ID of the child process for which status is reported,
|
---|
| 76 | * -1 on signal interrupt, (pid_t)-1 otherwise.
|
---|
[823a929] | 77 | */
|
---|
| 78 | posix_pid_t posix_wait(int *stat_ptr)
|
---|
| 79 | {
|
---|
[eb1edb0] | 80 | /* HelenOS does not support this. */
|
---|
| 81 | errno = ENOSYS;
|
---|
| 82 | return (posix_pid_t) -1;
|
---|
[823a929] | 83 | }
|
---|
| 84 |
|
---|
[e64b55a] | 85 | /**
|
---|
[2a53f71] | 86 | * Wait for a child process to stop or terminate.
|
---|
[e64b55a] | 87 | *
|
---|
[2a53f71] | 88 | * @param pid What child process shall the caller wait for. See POSIX manual
|
---|
| 89 | * for details.
|
---|
| 90 | * @param stat_ptr Location of the final status code of the child process.
|
---|
| 91 | * @param options Constraints of the waiting. See POSIX manual for details.
|
---|
| 92 | * @return ID of the child process for which status is reported,
|
---|
| 93 | * -1 on signal interrupt, 0 if non-blocking wait is requested but there is
|
---|
| 94 | * no child process whose status can be reported, (pid_t)-1 otherwise.
|
---|
[e64b55a] | 95 | */
|
---|
| 96 | posix_pid_t posix_waitpid(posix_pid_t pid, int *stat_ptr, int options)
|
---|
| 97 | {
|
---|
[eb1edb0] | 98 | assert(stat_ptr != NULL);
|
---|
| 99 | assert(options == 0 /* None of the options are supported. */);
|
---|
| 100 |
|
---|
| 101 | task_exit_t texit;
|
---|
| 102 | int retval;
|
---|
| 103 |
|
---|
[0d0b319] | 104 | if (failed(task_wait_task_id((task_id_t) pid, &texit, &retval))) {
|
---|
[eb1edb0] | 105 | /* Unable to retrieve status. */
|
---|
| 106 | return (posix_pid_t) -1;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | if (texit == TASK_EXIT_NORMAL) {
|
---|
| 110 | // FIXME: relies on application not returning this value
|
---|
| 111 | assert(retval != INT_MIN);
|
---|
| 112 | *stat_ptr = retval;
|
---|
| 113 | } else {
|
---|
| 114 | /* Reserve the lowest value for unexpected termination. */
|
---|
| 115 | *stat_ptr = INT_MIN;
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | return pid;
|
---|
[e64b55a] | 119 | }
|
---|
| 120 |
|
---|
[823a929] | 121 | /** @}
|
---|
| 122 | */
|
---|