Namespaces
Variants
Views
Actions

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

From cppreference.com
< cpp‎ | utility‎ | program
m (Text replace - "<!-- ======== --> " to "")
m (Text replace - "{{example cpp" to "{{example")
Line 27: Line 27:
  
 
===Example===
 
===Example===
{{example cpp
+
{{example
 
  |
 
  |
 
  | code=
 
  | code=

Revision as of 18:17, 19 April 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: Template:cpp/utility/program/dcl list SIGABRTTemplate:cpp/utility/program/dcl list SIGFPETemplate:cpp/utility/program/dcl list SIGILLTemplate:cpp/utility/program/dcl list SIGINTTemplate:cpp/utility/program/dcl list SIGSEGVTemplate:cpp/utility/program/dcl list SIGTERM


Return value

Template:cpp upon success, non-zero value on failure.

Example

See also

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