 |
|
|
NAME
| | raise - send signal to program |
SYNOPSIS
| |
#include <signal.h> int raise(int sig); |
| |
The raise() function sends the signal sig to the executing program. It uses the kill() function to send the signal to the executing program,
as follows:
kill(getpid(), sig);
See the kill(2) manual page for a detailed list of failure
conditions and the signal(3C) manual page for a list of signals.
|
| |
Upon successful completion, 0 is returned. Otherwise, -1 is returned and errno is set to indicate the error.
|
| |
See attributes(5) for descriptions of the following
attributes:
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
| MT-Level | MT-Safe |
|
Company Info
|
Contact
|
Copyright 2003 Sun Microsystems, Inc. All rights reserved.
Use is subject to license terms.
|