summaryrefslogtreecommitdiffstats
path: root/doc/Notifier.3
diff options
context:
space:
mode:
authorjenglish <jenglish@noemail.net>2000-07-24 00:03:00 (GMT)
committerjenglish <jenglish@noemail.net>2000-07-24 00:03:00 (GMT)
commit8f0b62ba8d308ab83c3e0c6aac8195fcb54e6761 (patch)
tree7f70a4694958b0dba613a69a4cd1ea81c11c6975 /doc/Notifier.3
parent17830cb47c7d28893dec7eba48c6ec5c3d918bdd (diff)
downloadtcl-8f0b62ba8d308ab83c3e0c6aac8195fcb54e6761.zip
tcl-8f0b62ba8d308ab83c3e0c6aac8195fcb54e6761.tar.gz
tcl-8f0b62ba8d308ab83c3e0c6aac8195fcb54e6761.tar.bz2
doc/AddErrInfo.3, doc/ChnlStack.3, doc/Exit.3, doc/GetIndex.3, doc/Notifier.3,
doc/Object.3, doc/RegExp.3, doc/SetResult.3, doc/SplitList.3, doc/Thread.3: Added missing entries to NAME sections. doc/AddErrInfo.3, doc/CrtObjCmd.3, doc/RecEvalObj.3: Changed Tcl_EvalObj to Tcl_EvalObjEx FossilOrigin-Name: 68fe2a61a5e030d2764f54eb3060a99984c067a5
Diffstat (limited to 'doc/Notifier.3')
-rw-r--r--doc/Notifier.38
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/Notifier.3 b/doc/Notifier.3
index 78edc6a..c0bf149 100644
--- a/doc/Notifier.3
+++ b/doc/Notifier.3
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: Notifier.3,v 1.7 1999/05/06 20:13:22 stanton Exp $
+'\" RCS: @(#) $Id: Notifier.3,v 1.8 2000/07/24 00:03:02 jenglish Exp $
'\"
.so man.macros
.TH Notifier 3 8.1 Tcl "Tcl Library Procedures"
@@ -337,10 +337,10 @@ must be a structure of type \fBTcl_Event\fR, and the address of this
structure is used when communicating between the event source and the
rest of the notifier. A \fBTcl_Event\fR has the following definition:
.CS
-typedef struct Tcl_Event {
+typedef struct {
Tcl_EventProc *\fIproc\fR;
struct Tcl_Event *\fInextPtr\fR;
-};
+} Tcl_Event;
.CE
The event source must fill in the \fIproc\fR field of
the event before calling \fBTcl_QueueEvent\fR.
@@ -597,6 +597,6 @@ mode.
.VE
.SH "SEE ALSO"
\fBTcl_CreateFileHandler\fR, \fBTcl_DeleteFileHandler\fR, \fBTcl_Sleep\fR,
-\fBTcl_DoOneEvent\fR, \fBThreads.3\fR
+\fBTcl_DoOneEvent\fR, \fBThread(3)\fR
.SH KEYWORDS
event, notifier, event queue, event sources, file events, timer, idle, service mode, threads