diff options
Diffstat (limited to 'lib/libXt/man/XtAppAddSignal.man')
-rw-r--r-- | lib/libXt/man/XtAppAddSignal.man | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/lib/libXt/man/XtAppAddSignal.man b/lib/libXt/man/XtAppAddSignal.man index 846823217..8dc7fa18b 100644 --- a/lib/libXt/man/XtAppAddSignal.man +++ b/lib/libXt/man/XtAppAddSignal.man @@ -1,26 +1,26 @@ .\" Copyright (c) 1993, 1994 X Consortium -.\" +.\" .\" Permission is hereby granted, free of charge, to any person obtaining a -.\" copy of this software and associated documentation files (the "Software"), -.\" to deal in the Software without restriction, including without limitation -.\" the rights to use, copy, modify, merge, publish, distribute, sublicense, -.\" and/or sell copies of the Software, and to permit persons to whom the +.\" copy of this software and associated documentation files (the "Software"), +.\" to deal in the Software without restriction, including without limitation +.\" the rights to use, copy, modify, merge, publish, distribute, sublicense, +.\" and/or sell copies of the Software, and to permit persons to whom the .\" Software furnished to do so, subject to the following conditions: -.\" +.\" .\" The above copyright notice and this permission notice shall be included in .\" all copies or substantial portions of the Software. -.\" +.\" .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR .\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +.\" THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +.\" WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF +.\" OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE .\" SOFTWARE. -.\" -.\" Except as contained in this notice, the name of the X Consortium shall not -.\" be used in advertising or otherwise to promote the sale, use or other -.\" dealing in this Software without prior written authorization from the +.\" +.\" Except as contained in this notice, the name of the X Consortium shall not +.\" be used in advertising or otherwise to promote the sale, use or other +.\" dealing in this Software without prior written authorization from the .\" X Consortium. .\" .ds tk X Toolkit @@ -128,11 +128,11 @@ XtAppAddSignal, XtRemoveSignal, XtNoticeSignal \- register and remove a signal s .SH SYNTAX .HP XtSignalId XtAppAddSignal(XtAppContext \fIapp_context\fP, XtSignalCallbackProc -\fIproc\fP, XtPointer \fIclient_data\fP); +\fIproc\fP, XtPointer \fIclient_data\fP); .HP -void XtRemoveSignal(XtSignalId \fIid\fP); +void XtRemoveSignal(XtSignalId \fIid\fP); .HP -void XtNoticeSignal(XtSignalId \fIid\fP); +void XtNoticeSignal(XtSignalId \fIid\fP); .SH ARGUMENTS .IP \fIapp_context\fP 1i Specifies the application context. @@ -144,20 +144,20 @@ Specifies the ID returned from the corresponding .ZN XtAppAddSignal call. .IP \fIproc\fP 1i -Specifies the procedure that is to be called when the signal has been +Specifies the procedure that is to be called when the signal has been raised. .SH DESCRIPTION The .ZN XtAppAddSignal function initiates a mechanism for handling signals within the context -of the Intrinsics. Prior to establishing an operating system dependent +of the Intrinsics. Prior to establishing an operating system dependent signal handler the application may call .ZN XtAppAddSignal -and store the returned \fIid\fP in a place accessible to the signal +and store the returned \fIid\fP in a place accessible to the signal handler. .LP -Upon receipt of a signal from the operating system, the application may -call +Upon receipt of a signal from the operating system, the application may +call .ZN XtNoticeSignal passing the \fIid\fP returned by the call to .ZN XtAppAddSignal . @@ -172,7 +172,7 @@ Intrinsics maintain ``pending'' for each registered callback. This flag is initially .ZN False and is set to -.ZN True +.ZN True by .ZN XtNoticeSignal ; the Intrinsics invoke the callback whenever the flag is @@ -183,7 +183,7 @@ just before the callback is invoked. .LP The .ZN XtRemoveSignal -function is called to remove the specified Intrinsics signal handler. The +function is called to remove the specified Intrinsics signal handler. The client should disable the source of the signal before calling .ZN XtRemoveSignal . .SH "SEE ALSO" |