RAISE - issue signal.

(ANSI Standard)

Usage:

#include <signal.h>
stat = raise(sig);

Where:

int sig;
is the number of the signal that you want to issue (simulate).
int stat;
is zero if the signal was raised successfully. Otherwise, it is non-zero.

Description:

"raise" issues a signal to the executing program. In effect, it simulates the condition that would normally cause the signal.

See Also:

expl c lib signal

Copyright © 1996, Thinkage Ltd.