diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-03-30 23:06:39 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-03-30 23:06:39 (GMT) |
commit | 48f8dee3a1a0e24705f0e328314065e9dc602993 (patch) | |
tree | 54aac1cde138798340a664ebb66533625a892063 /generic/tclStubInit.c | |
parent | 04bc231d0eaa06994bc6cab2b61b518e200fab0c (diff) | |
download | tcl-48f8dee3a1a0e24705f0e328314065e9dc602993.zip tcl-48f8dee3a1a0e24705f0e328314065e9dc602993.tar.gz tcl-48f8dee3a1a0e24705f0e328314065e9dc602993.tar.bz2 |
2001-03-30 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* All of the changes below belong to TIP #10 [Tcl I/O Enhancement:
Thread-Aware Channels]. See also [Patch #403358] at SF.
* generic/tclIO.h (struct ChannelState, line 236f): Extended the
structure with a new field of type 'Tcl_ThreadId' to hold the id
of the thread currently managing all channels with this state.
Note: This structure is shared by all channels in a stack of
transformations.
* generic/tclIO.c (Tcl_CreateChannel, lines 1058-1065): Modified
to store the Id of the current thread in the 'ChannelState' of
the new channel.
* generic/tclIO.c (Tcl_SpliceChannel, lines 2265-2270): Modified
in the same manner as 'Tcl_CreateChannel' as the channel will be
managed by the current thread afterward.
* generic/tclIO.c (Tcl_GetChannelThread, lines 1478-1503):
* generic/tcl.decls (Tcl_GetChannelThread, lines 1504-1506): New
API function to retrieve the Id of the managing thread from a
channel. Implementation and declaration.
* generic/tclTest.c (TestChannelCmd, lines 4520-4532): Added
subcommand 'mthread' to query a channel about its managing
thread.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index cb42cc0..35fada8 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.47 2001/01/18 19:09:55 andreas_kupries Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.48 2001/03/30 23:06:40 andreas_kupries Exp $ */ #include "tclInt.h" @@ -836,6 +836,7 @@ TclStubs tclStubs = { Tcl_AttemptRealloc, /* 430 */ Tcl_AttemptDbCkrealloc, /* 431 */ Tcl_AttemptSetObjLength, /* 432 */ + Tcl_GetChannelThread, /* 433 */ }; /* !END!: Do not edit above this line. */ |