raise
- Updated2023-02-21
- 1 minute(s) read
raise
int raise (int signal);
Purpose
Sends the specified signal to the executing program.
Parameters
Input | |||||||||||||||||||||||
Name | Type | Description | |||||||||||||||||||||
signal | int |
Contains the signal to be sent to the executing program. ANSI Standard defines the signal options available
in this parameter. Additional signals may be available for different platforms. Check the header file
signal.h for additional signal options. The following signals are available:
|
Return Value
Name | Type | Description |
status | int | Contains the returned status of the function. If successful, the function returns zero; otherwise, it returns nonzero. |
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later