source: mainline/uspace/lib/posix/src/sys/wait.c@ 81b1db8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 81b1db8 was a35b458, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 8 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

  • Property mode set to 100644
File size: 3.5 KB
Line 
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 */
33/** @file Support for waiting.
34 */
35
36#include "../internal/common.h"
37#include "posix/sys/wait.h"
38
39#include "libc/task.h"
40#include <assert.h>
41
42#include <errno.h>
43
44#include "posix/limits.h"
45#include "posix/signal.h"
46
47int __posix_wifexited(int status) {
48 return status != INT_MIN;
49}
50
51int __posix_wexitstatus(int status) {
52 assert(__posix_wifexited(status));
53 return status;
54}
55
56int __posix_wifsignaled(int status) {
57 return status == INT_MIN;
58}
59
60int __posix_wtermsig(int status) {
61 assert(__posix_wifsignaled(status));
62 /* There is no way to distinguish reason
63 * for unexpected termination at the moment.
64 */
65 return SIGABRT;
66}
67
68/**
69 * Wait for any child process to stop or terminate.
70 *
71 * @param stat_ptr Location of the final status code of the child process.
72 * @return ID of the child process for which status is reported,
73 * -1 on signal interrupt, (pid_t)-1 otherwise.
74 */
75pid_t wait(int *stat_ptr)
76{
77 /* HelenOS does not support this. */
78 errno = ENOSYS;
79 return (pid_t) -1;
80}
81
82/**
83 * Wait for a child process to stop or terminate.
84 *
85 * @param pid What child process shall the caller wait for. See POSIX manual
86 * for details.
87 * @param stat_ptr Location of the final status code of the child process.
88 * @param options Constraints of the waiting. See POSIX manual for details.
89 * @return ID of the child process for which status is reported,
90 * -1 on signal interrupt, 0 if non-blocking wait is requested but there is
91 * no child process whose status can be reported, (pid_t)-1 otherwise.
92 */
93pid_t waitpid(pid_t pid, int *stat_ptr, int options)
94{
95 assert(stat_ptr != NULL);
96 assert(options == 0 /* None of the options are supported. */);
97
98 task_exit_t texit;
99 int retval;
100
101 if (failed(task_wait_task_id((task_id_t) pid, &texit, &retval))) {
102 /* Unable to retrieve status. */
103 return (pid_t) -1;
104 }
105
106 if (texit == TASK_EXIT_NORMAL) {
107 // FIXME: relies on application not returning this value
108 assert(retval != INT_MIN);
109 *stat_ptr = retval;
110 } else {
111 /* Reserve the lowest value for unexpected termination. */
112 *stat_ptr = INT_MIN;
113 }
114
115 return pid;
116}
117
118/** @}
119 */
Note: See TracBrowser for help on using the repository browser.