LabWindows/CVI

Content Type
Programming Language
Current manual

signal

signal

void (*signal (int signal, void (*signalHandler)(int)))(int);

Purpose

Selects the response for a specified signal. The three possible responses are:

  • Ignore the signal
  • Default response—terminate program execution
  • Call a function when that signal occurs
Note Note  This function panel only includes signals required by ANSI Standards. For additional signals, check signal.h.

Parameters

Input
Name Type Description
signal int Contains the signal to which a response will be defined. ANSI Standard defines the signal options available in this parameter. Additional signals may be available for different platforms. Check signal.h for additional signal options. The signals available from this parameter are the following:
Name Value (int) Definition
Interactive Attention SIGINT (1) Receipt of an interactive attention signal, like an interrupt
Invalid Function Image SIGILL (2) Detection of an invalid function image, such as an illegal instruction
Abnormal Termination SIGABRT (3) Abnormal termination, such as is initiated by the abort function
Erroneous Arithmetic SIGFPE (4) An erroneous arithmetic operation, such as divide by zero or overflow
Invalid Storage Access SIGSEGV (5) An invalid access to storage
Request Termination SIGTERM (6) A termination request sent to the program
signalHandler void (*)(int) Contains the desired response to the signal stored in signal. The following responses are available:
Signal Handler Response
SIG_IGN Ignore the signal
SIG_DFL Perform the default response, which is to terminate execution
<a function> Call this function when the specified signal occurs

Return Value

Name Type Description
previousHandler void (*)(int) Contains the returned result of the function. If the signal handling request can be honored,signal returns the signal handler for the most recent call to this function; otherwise, the function returns SIG_ERR indicating that the request could not be handled.

Additional Information

Library: ANSI C Library

Include file: ansi_c.h

LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later

Was this information helpful?