diff options
author | davidw <davidw> | 2005-02-05 09:15:37 (GMT) |
---|---|---|
committer | davidw <davidw> | 2005-02-05 09:15:37 (GMT) |
commit | f198740c86117c5d124f1131ff3127ba20141c68 (patch) | |
tree | 99f62246f61c53c8fedf039c2fa392f4fc34823e /doc/Thread.3 | |
parent | e5de9528c47b0d8428ea81f5fbb9da883158b435 (diff) | |
download | tcl-f198740c86117c5d124f1131ff3127ba20141c68.zip tcl-f198740c86117c5d124f1131ff3127ba20141c68.tar.gz tcl-f198740c86117c5d124f1131ff3127ba20141c68.tar.bz2 |
* doc/Thread.3: Fixed sentence describing flags for Tcl_CreateThread.
* doc/FileSystem.3: Cleaned up typo in Tcl_FSNewNativePath
documentation.
* generic/tclPathObj.c: Cleaned up typo in comment.
Diffstat (limited to 'doc/Thread.3')
-rw-r--r-- | doc/Thread.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/Thread.3 b/doc/Thread.3 index c9ec694..069a9c3 100644 --- a/doc/Thread.3 +++ b/doc/Thread.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: Thread.3,v 1.21 2004/12/07 00:00:57 hobbs Exp $ +'\" RCS: @(#) $Id: Thread.3,v 1.22 2005/02/05 09:15:42 davidw Exp $ '\" .so man.macros .TH Threads 3 "8.1" Tcl "Tcl Library Procedures" @@ -96,8 +96,8 @@ caller can determine the size of the stack given to the new thread and modify the behaviour through the supplied \fIflags\fR. The value \fBTCL_THREAD_STACK_DEFAULT\fR for the \fIstackSize\fR indicates that the default size as specified by the operating system is to be used -for the new thread. As for the flags, currently are only the values -\fBTCL_THREAD_NOFLAGS\fR and \fBTCL_THREAD_JOINABLE\fR defined. The +for the new thread. As for the flags, currently only the values +\fBTCL_THREAD_NOFLAGS\fR and \fBTCL_THREAD_JOINABLE\fR are defined. The first of them invokes the default behaviour with no specialties. Using the second value marks the new thread as \fIjoinable\fR. This means that another thread can wait for the such |