| SC_SIGNAL_BCAST(2) | SC_SIGNAL_BCAST(2) |
#include <signal.h>
#include <sc.h>
int sc_signal_bcast(int signal);
sc_signal_bcast() broadcasts signal to all
processes in a user parallel process. Since SCore-D controls user
processes using SIGSTOP, SIGCONT and
SIGKILL, broadcasting one of these signals using
sc_signal_bcast() is prohibited.
sc_signal_bcast() returns 0 on success
or the following error:
EINVALsignal is a negative number,
or signal is SIGSTOP, SIGCONT
or SIGKILL.