Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/utility/program/raise"

From cppreference.com
< cpp‎ | utility‎ | program
(+see c)
(Parameters: use proper template)
Line 13: Line 13:
 
{{param list item | sig | the signal to be sent. It can be an implementation-defined value or one of the following values:
 
{{param list item | sig | the signal to be sent. It can be an implementation-defined value or one of the following values:
 
{{dcl list begin}}
 
{{dcl list begin}}
{{dcl list template | cpp/utility/program/dcl list SIGABRT}}
+
{{dcl list template | cpp/utility/program/dcl list SIG_types}}
{{dcl list template | cpp/utility/program/dcl list SIGFPE}}
+
{{dcl list template | cpp/utility/program/dcl list SIGILL}}
+
{{dcl list template | cpp/utility/program/dcl list SIGINT}}
+
{{dcl list template | cpp/utility/program/dcl list SIGSEGV}}
+
{{dcl list template | cpp/utility/program/dcl list SIGTERM}}
+
 
{{dcl list end}}
 
{{dcl list end}}
 
}}
 
}}

Revision as of 07:26, 14 May 2012

Template:cpp/utility/program/sidebar

Defined in header <csignal>
int raise( int sig );

Sends signal sig to the program. The signal handler, specified using signal() is invoked.

If the user-defined signal handling strategy is not set using signal() yet, it is implementation-defined whether the signal will be ignored or default handler will be invoked.

Contents

Parameters

sig - the signal to be sent. It can be an implementation-defined value or one of the following values:
defines signal types
(macro constant) [edit]


Return value

0 upon success, non-zero value on failure.

Example

See also

sets a signal handler for particular signal
(function) [edit]
C documentation for raise