1POSIX_SPAWNATTR_GETSIGDEFAULPTO(S3IPX)Programmer'sPMOaSnIuXa_lSPAWNATTR_GETSIGDEFAULT(3P)
2
3
4

PROLOG

6       This  manual  page is part of the POSIX Programmer's Manual.  The Linux
7       implementation of this interface may differ (consult the  corresponding
8       Linux  manual page for details of Linux behavior), or the interface may
9       not be implemented on Linux.
10

NAME

12       posix_spawnattr_getsigdefault, posix_spawnattr_setsigdefault — get  and
13       set  the  spawn-sigdefault  attribute  of  a  spawn  attributes  object
14       (ADVANCED REALTIME)
15

SYNOPSIS

17       #include <signal.h>
18       #include <spawn.h>
19
20       int posix_spawnattr_getsigdefault(const posix_spawnattr_t
21           *restrict attr, sigset_t *restrict sigdefault);
22       int posix_spawnattr_setsigdefault(posix_spawnattr_t *restrict attr,
23           const sigset_t *restrict sigdefault);
24

DESCRIPTION

26       The posix_spawnattr_getsigdefault() function shall obtain the value  of
27       the spawn-sigdefault attribute from the attributes object referenced by
28       attr.
29
30       The posix_spawnattr_setsigdefault() function shall set the spawn-sigde‐
31       fault attribute in an initialized attributes object referenced by attr.
32
33       The  spawn-sigdefault  attribute  represents  the  set of signals to be
34       forced to  default  signal  handling  in  the  new  process  image  (if
35       POSIX_SPAWN_SETSIGDEF  is  set in the spawn-flags attribute) by a spawn
36       operation. The default value of this attribute shall be an empty signal
37       set.
38

RETURN VALUE

40       Upon   successful   completion,  posix_spawnattr_getsigdefault()  shall
41       return zero and store the value of the  spawn-sigdefault  attribute  of
42       attr into the object referenced by the sigdefault parameter; otherwise,
43       an error number shall be returned to indicate the error.
44
45       Upon  successful  completion,   posix_spawnattr_setsigdefault()   shall
46       return  zero;  otherwise, an error number shall be returned to indicate
47       the error.
48

ERRORS

50       These functions may fail if:
51
52       EINVAL The value specified by attr is invalid.
53
54       The posix_spawnattr_setsigdefault() function may fail if:
55
56       EINVAL The value of the attribute being set is not valid.
57
58       The following sections are informative.
59

EXAMPLES

61       None.
62

APPLICATION USAGE

64       These functions are part of the Spawn option and need not  be  provided
65       on all implementations.
66

RATIONALE

68       None.
69

FUTURE DIRECTIONS

71       None.
72

SEE ALSO

74       posix_spawn(), posix_spawnattr_destroy(), posix_spawnattr_getflags(),
75       posix_spawnattr_getpgroup(), posix_spawnattr_getschedparam(),
76       posix_spawnattr_getschedpolicy(), posix_spawnattr_getsigmask()
77
78       The Base Definitions volume of POSIX.1‐2017, <signal.h>, <spawn.h>
79
81       Portions  of  this text are reprinted and reproduced in electronic form
82       from IEEE Std 1003.1-2017, Standard for Information Technology --  Por‐
83       table  Operating System Interface (POSIX), The Open Group Base Specifi‐
84       cations Issue 7, 2018 Edition, Copyright (C) 2018 by the  Institute  of
85       Electrical  and  Electronics Engineers, Inc and The Open Group.  In the
86       event of any discrepancy between this version and the original IEEE and
87       The  Open Group Standard, the original IEEE and The Open Group Standard
88       is the referee document. The original Standard can be  obtained  online
89       at http://www.opengroup.org/unix/online.html .
90
91       Any  typographical  or  formatting  errors that appear in this page are
92       most likely to have been introduced during the conversion of the source
93       files  to  man page format. To report such errors, see https://www.ker
94       nel.org/doc/man-pages/reporting_bugs.html .
95
96
97
98IEEE/The Open Group                  2017    POSIX_SPAWNATTR_GETSIGDEFAULT(3P)
Impressum