[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"
|
---|
| 43 | #include "posix/assert.h"
|
---|
| 44 | #include "posix/errno.h"
|
---|
| 45 | #include "posix/limits.h"
|
---|
| 46 | #include "posix/signal.h"
|
---|
[eb1edb0] | 47 |
|
---|
| 48 | int __posix_wifexited(int status) {
|
---|
| 49 | return status != INT_MIN;
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | int __posix_wexitstatus(int status) {
|
---|
| 53 | assert(__posix_wifexited(status));
|
---|
| 54 | return status;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | int __posix_wifsignaled(int status) {
|
---|
| 58 | return status == INT_MIN;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | int __posix_wtermsig(int status) {
|
---|
| 62 | assert(__posix_wifsignaled(status));
|
---|
| 63 | /* There is no way to distinguish reason
|
---|
| 64 | * for unexpected termination at the moment.
|
---|
| 65 | */
|
---|
| 66 | return SIGABRT;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[823a929] | 69 | /**
|
---|
[2a53f71] | 70 | * Wait for any child process to stop or terminate.
|
---|
[823a929] | 71 | *
|
---|
[2a53f71] | 72 | * @param stat_ptr Location of the final status code of the child process.
|
---|
| 73 | * @return ID of the child process for which status is reported,
|
---|
| 74 | * -1 on signal interrupt, (pid_t)-1 otherwise.
|
---|
[823a929] | 75 | */
|
---|
| 76 | posix_pid_t posix_wait(int *stat_ptr)
|
---|
| 77 | {
|
---|
[eb1edb0] | 78 | /* HelenOS does not support this. */
|
---|
| 79 | errno = ENOSYS;
|
---|
| 80 | return (posix_pid_t) -1;
|
---|
[823a929] | 81 | }
|
---|
| 82 |
|
---|
[e64b55a] | 83 | /**
|
---|
[2a53f71] | 84 | * Wait for a child process to stop or terminate.
|
---|
[e64b55a] | 85 | *
|
---|
[2a53f71] | 86 | * @param pid What child process shall the caller wait for. See POSIX manual
|
---|
| 87 | * for details.
|
---|
| 88 | * @param stat_ptr Location of the final status code of the child process.
|
---|
| 89 | * @param options Constraints of the waiting. See POSIX manual for details.
|
---|
| 90 | * @return ID of the child process for which status is reported,
|
---|
| 91 | * -1 on signal interrupt, 0 if non-blocking wait is requested but there is
|
---|
| 92 | * no child process whose status can be reported, (pid_t)-1 otherwise.
|
---|
[e64b55a] | 93 | */
|
---|
| 94 | posix_pid_t posix_waitpid(posix_pid_t pid, int *stat_ptr, int options)
|
---|
| 95 | {
|
---|
[eb1edb0] | 96 | assert(stat_ptr != NULL);
|
---|
| 97 | assert(options == 0 /* None of the options are supported. */);
|
---|
| 98 |
|
---|
| 99 | task_exit_t texit;
|
---|
| 100 | int retval;
|
---|
| 101 |
|
---|
| 102 | int rc = task_wait((task_id_t) pid, &texit, &retval);
|
---|
| 103 |
|
---|
| 104 | if (rc < 0) {
|
---|
| 105 | /* Unable to retrieve status. */
|
---|
| 106 | errno = -rc;
|
---|
| 107 | return (posix_pid_t) -1;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | if (texit == TASK_EXIT_NORMAL) {
|
---|
| 111 | // FIXME: relies on application not returning this value
|
---|
| 112 | assert(retval != INT_MIN);
|
---|
| 113 | *stat_ptr = retval;
|
---|
| 114 | } else {
|
---|
| 115 | /* Reserve the lowest value for unexpected termination. */
|
---|
| 116 | *stat_ptr = INT_MIN;
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | return pid;
|
---|
[e64b55a] | 120 | }
|
---|
| 121 |
|
---|
[823a929] | 122 | /** @}
|
---|
| 123 | */
|
---|