int
sigignore(
int sig
)
The
sigignore()
function sets the disposition of the signal
sig
to
SIG_IGN
.
)
function returns 0.
Otherwise -1 is returned and
errno
is set to indicate the error.
)
function will fail if:
EINVAL
]
sig
is not a valid signal number.
EINVAL
]
SIGKILL
or
SIGSTOP
.
)
function conforms to
IEEE Std 1003.1-2001 (``POSIX.1'') .