XtSignalId XtAppAddSignal(app_context, proc, client_data) XtAppContext app_context; XtInputCallbackProc proc; XtPointer client_data;void XtRemoveSignal(id) XtSignalId id;
void XtNoticeSignal(id) XtSignalId id)
Upon receipt of a signal from the operating system, the application may call XtNoticeSignal passing the id returned by the call to XtAppAddSignal .
XtNoticeSignal is the only Intrinsics function that can safely be called from a signal handler. If XtNoticeSignal is called multiple times before the Intrinsics are able to invoke the registered callback, the callback is only called once. Logically the Intrinsics maintain ``pending'' for each registered callback. This flag is initially False and is set to True by XtNoticeSignal; the Intrinsics invoke the callback whenever the flag is True , and the flag is set to False just before the callback is invoked.
The XtRemoveSignal function is called to remove the specified Intrinsics signal handler. The client should disable the source of the signal before calling XtRemoveSignal .
X Toolkit Intrinsics - C Language Interface
Xlib - C Language X Interface