Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
50 descendants and 50 ancestors of 00075af63b3311d0
2007-07-11
| ||
20:22 | * Dbg.c: Cleaned up the direct access to interp->result, * exp_command.c: replaced with the proper functions and * expect.c: Tcl_Obj's. * exp_main_exp.c: * exp_main_sub.c: * exp_main_tk.c: * exp_prog.h: * exp_trap.c: * exp_tty.c: * exp_win.c: * exp_win.h: check-in: 12ba94624a user: andreas_kupries tags: trunk | |
20:11 | * tests/cat.test: Added proper 'package require Expect' * tests/expect.test: to the test setup code (JeffH). * tests/logfile.test: * tests/pid.test: * tests/send.test: * tests/spawn.test: * tests/stty.test: check-in: e1e81a3fc1 user: andreas_kupries tags: trunk | |
20:07 | * exp_command.c: Reformatted overlong lines, whitespace, * expect.c: comments. Added braces to some if-constructs. * exp_inter.c: Reworked if-constructs interleaved with * exp_tty.c: #if for better formatting in emacs. check-in: 8c290788c4 user: andreas_kupries tags: trunk | |
20:00 | * Dbg.c: Added note about unhandled cases in a switch. * exp_chan.c: Added code to suppress unhandled warning for unreachable code. * exp_command.c: Removed unused variable. * expect.c: Removed unused static function, added code to suppress unhandled warning for unreachable code. check-in: 6181af45e7 user: andreas_kupries tags: trunk | |
19:54 | * exp_command.c: Fixed typo in comment. check-in: cad5ba9615 user: andreas_kupries tags: trunk | |
2007-06-28
| ||
19:23 | * Merged changes from the official version 5.44.1 of expect into the SF sources. See the details below. -------------------- Marius Schamsula <[email protected]> reported tclconfig missing, evidentally for new TEA. Lots of massaging to fix TEAification of Makefile and configure including that version numbers will now be full three part. Daniel Wong <[email protected]> noted the home page should note that Wikipedia has a very readable entry for Expect. Andre Alves <[email protected]> noted passmass needed some fixes to handle Solaris 9 passwd prompt changes. Andreas fixed several things: changes to better support TEA, fix debugger interaction with nonblocking mode, and probably other things I'm overlooking. Martin Dietze <[email protected]> noted that autoconf 2.59 is confused by C comment after undefs in expect_cf.h.in. Added additional code to unbuffer -p so that if a process earlier in the pipeline exits, unbuffer attempts to recover any remaining output from the spawned proc before unbuffer itself exits. Jeffrey Hobbs noted that once stty was called, a bg'd script would be suspended at exit. Turned out to be overaggressive code in stty that recorded what 'damage' the user might have caused when calling stty in the first place. Jens Petersen provided patch to make setpgrp configure better on some Linux systems. Added example/getpassck script to test for getpass bug. multixterm had debugging stuff leftover ("hello"). -------------------- check-in: c26f3be061 user: andreas_kupries tags: trunk | |
2006-03-01
| ||
17:21 | * exp_main_sub.c: Added command 'exp_configure' for magic configuration. * exp_command.c: Accepts option -strictwrite. Default is 0, ignoring * exp_chan.c: write errors (compatible to 5.41). Setting to 1 re- * expect_tcl.h: activates 5.42 behaviour. check-in: 505a87ae87 user: andreas_kupries tags: trunk | |
2006-01-25
| ||
21:52 | Fix LD_SEARCH_FLAGS setting in tcl.m4 check-in: cbe0f4c856 user: hobbs tags: trunk | |
21:51 | whitespace police check-in: 292d341811 user: hobbs tags: trunk | |
21:51 | brace exprs check-in: 9914750c5a user: hobbs tags: trunk | |
21:51 | use clock instead of exec date, minor nroff fixes check-in: e1316cab93 user: hobbs tags: trunk | |
2006-01-24
| ||
18:04 | * tclconfig/tcl.m4: Updated to TEA 3.5 * configure.in: Ditto. * configure: Regenerated. check-in: f86d3d6752 user: andreas_kupries tags: trunk | |
2005-09-19
| ||
19:08 | * exp_chan.c (ExpOutputProc): Added guard to intercept and ignore empty write operations, i.e. operations trying to write zero bytes. check-in: e03f09e757 user: andreas_kupries tags: trunk | |
2005-09-09
| ||
18:02 | * exp_chan.c (ExpBlockModeProc): No, stdin is not ok (See last entry). Fixed. check-in: 1c220bab38 user: andreas_kupries tags: trunk | |
2005-07-20
| ||
17:36 | * exp_chan.c (ExpBlockModeProc): [Expect SF Bug 1108551]. Excluded manipulation of the blocking status for stdin/stderr. This is handled by the Tcl core itself and we must absolutely not pull the rug out from under it. The standard setting to non-blocking will mess with the core which had them set to blocking, and makes all its decisions based on that assumption. Setting to non-blocking can cause hangs and crashes. Stdin is ok however, apparently. This problem was introduced at '2004-06-14'. check-in: a4ff2d2b3a user: andreas_kupries tags: trunk | |
2005-06-22
| ||
17:03 | * exp_chan.c: Fixed bug causing crash of expect on exit when a * exp_command.c: Tcl channel is used with -(leave)open more than * exp_command.h: once. It tried to close such channels multiple times, going through already freed memory. Added data structures to track and refcount all such channels, to close them only when the last user goes away. check-in: cce8bca8e2 user: andreas_kupries tags: trunk | |
2005-06-10
| ||
18:03 | Added more missing files. check-in: 771150f30b user: andreas_kupries tags: trunk | |
17:59 | Added missing macro definitions. check-in: fc7f0cfd9f user: andreas_kupries tags: trunk | |
2005-06-09
| ||
18:51 | * Makefile.in: Upgraded build system to TEA 3.2. * configure.in: * config.guess: * config.sub * exp_main_sub.c: * aclocal.m4: check-in: c67b245a31 user: andreas_kupries tags: trunk | |
2005-03-29
| ||
23:08 | * exp_chan.c: Fixed problem with debugger introduced at '2004-06-14'. * tcldbg.h: For a nonblocking stdin the debugger blowed up on the * Dbg.c: empty reads it could get, exiting the application. I guess that this was an implicit 'panic'. Fix: - Split ExpBlockmodeProc into high- and lowlevel code, the latter for use by the debugger. The high-level code tells the debugger which state stdin is in (doing this explicitly because if FIONBIO is used it is not possible to query the fd directly, and I saw no reason to #ifdef for fcntl which can). - Debugger now exports a function for use by the blockmode proc, and in each interaction it checks for nonblocking input, forces blocking if necessary. At the end of each interaction the true mode is restored. Both operations use the low-level blockmode code. check-in: 3dbeb6ea4c user: andreas_kupries tags: trunk | |
2005-03-25
| ||
21:02 | simple license terms (PD) check-in: 7b9684e7d6 user: hobbs tags: trunk | |
21:01 | ensure iso8859-1 for /tmp/null (steffen) check-in: 6cc5a55e5b user: hobbs tags: trunk | |
2005-03-07
| ||
21:49 | * exp_tty.c (Exp_SttyCmd): fix from Libes that controlling terminal check example (book p372) by restricting set of exp_ioctled_devtty variable. check-in: 95786b22e5 user: hobbs tags: trunk | |
2005-02-15
| ||
22:39 | Merge goof fixed check-in: 6f759d6c0a user: andreas_kupries tags: trunk | |
18:11 | * Merged changes from the official versions 5.42.1 and 5.43.0 of expect into the SF sources. See the details below. -------------------- Martin Forssen <[email protected]> fixed bug in ExpOutputProc that caused misbehavior during partial writes. Someone noted that gets stdin behaves differently (returns -1 immediately) from tclsh because with 5.42, stdin is unblocked by defaults. Robroy Gregg <[email protected]> noted that expect_background ignores timeouts. Added to documentation. Jens Peterson <[email protected]> provided patch for "mkpasswd -vo". Gary Bliesener <[email protected]> noted that multixterm failed on his system which had an old Tk that didn't support the Tk package. Removed beta designation. Daniel A. Steffen <[email protected]> provided patch for MacOS to avoid panic-redefinition. -------------------- check-in: a4ce3c033f user: andreas_kupries tags: trunk | |
2005-01-21
| ||
23:17 | * exp_inter.c: Changed all uses of 'time(3)' to Tcl_GetTime. IOW * expect.c: go through the abstract core API instead of directly acessing OS time. This makes the code dependent on Tcl 8.4, as Tcl_GetTime was not public before. See TIP #73 for its introduction into the public API. As for the reason behind _this_ change see TIP #233. Our change here now causes Expect to be automatically in sync with any virtualization set up in the core. check-in: e751fc0557 user: andreas_kupries tags: trunk | |
2004-07-15
| ||
20:24 | * Merged changes from the official version 5.42b0 of expect into the SF sources. See details below (In the ChangeLog). check-in: 51b6a4242b user: andreas_kupries tags: trunk | |
2004-06-14
| ||
20:56 | * exp_chan.c: Integrated the block mode proc I got by mail from Don Libes into the channel driver. This fixes an error with expect hanging on some input if the situation is just right^Hwrong. Basically if the buffers in driver, Tcl IO core and Expect itself are aligned just so it can cause Expect to block in all call to the OS for more data even if all the data it needs is in ts buffers. Because the driver is blocking and the Tcl core was told that it can run in non-blocking mode. with the block mode proc in place the driver knows that it should be non-blocking and is able to tell this to the OS as well. The call to the OS still happens, but is not blocking anymore, and so the problem is gone. A number of incompat changes in the Tcl IO core to work around this problem in Expect will be removed now. check-in: 2d6795167d user: andreas_kupries tags: trunk | |
2004-06-03
| ||
20:06 | * aclocal.m4 (TCLHDIRDASHI): Extended with path to unix headers as well. * expect_tcl.h: Added inclusion of <stdio.h>. Both changes required for Expect to compile against Tcl 8.5 after the header reform. * configure: Regenerated. check-in: 7bada31d37 user: andreas_kupries tags: trunk | |
2004-05-19
| ||
17:33 | * Merged changes from the official version 5.41 of expect into the SF sources. See details below. -------------------- Simon Taylor <[email protected]> provided fix for interact -o which was completely broken by 5.40.1. Added scroll support to official tkterm. Copied all fixes from/to term_expect to/from tkterm. Kiran Madabhushi <[email protected]> encountered interact diagnostics incorrectly pointing to expect_background. Also, found multiple -o flags behaving unexpectedly. Added diag. Kristoffer Eriksson <[email protected]> noted typo in SIMPLE code in exp_inter.c. However, this is extremely unlikely to affect any machines. Reinhard Max <[email protected]> noted that "make test" failed when run in the background. The log testcase was testing the send_tty command. Added code in both Expect and in the test to handle this. -------------------- check-in: 3b333765b6 user: andreas_kupries tags: trunk | |
2004-02-26
| ||
01:02 | * Merged changes from the official version 5.40 of expect into the SF sources. See details below. Partially already done (Rich Kennedy's patch). -------------------- Eric Raymond <[email protected]> provided troff-related fixes for the expect, lib, and dislocate man pages. Rich Kennedy <[email protected]> noted a bug having to do with our caching of whether we have registered a filehandler. This broke when Tcl was setting a handler on the same file. Ken Pizzini <[email protected]> provided patch for leak in spawn error handling. Pete Lancashire <[email protected]> noted autopasswd example broke on Solaris which capitalized prompts. -------------------- check-in: 79aeec465b user: andreas_kupries tags: trunk | |
2003-10-20
| ||
20:39 | * exp_event.c (exp_get_next_event): Applied a patch made by Don Libes in response to a bug report posted to news:comp.lang.tcl by Rich Kennedy <[email protected]>. Patch was posted to c.l.t too. check-in: 5997acf4d4 user: andreas_kupries tags: trunk | |
2003-09-05
| ||
19:01 | * Merged changes from the official version 5.39 of expect into the SF sources. See details below. Partially already done. -------------------- Poorva Gupta <[email protected]> noted that grantpt/unlockpt order was backward. Strange that this was never a prob before! Eric Raymond <[email protected]> provided a troff-related fix for the multixterm man page. Nicolas Roeser <[email protected]> noted confusion with md5 so I made the Expect page more explicit about which file that hash was based on. Josh Purinton noted that earlier fix wasn't quite right. Exit on INT/TERM should cause Expect to exit with signal embedded in status. He also requested I obfuscate email addresses in this file. Guido Ostkamp <[email protected]> and Igor Sobrado <[email protected]> noted that fixline1 rewrote scripts to be expect scripts even if they were expectk scripts. Dirk Petera <[email protected]> noted that any_spawn_id used to work but did no longer. Looks like a bug left over from the the I18L conversion. Fixed. Steve Szabo noted exp_log_file -open channel failed. Fixed. Fixed bug from 5.31 that prevent stty from returning messages from underlying program. Thomas Dickey <[email protected]> noted that ncurses ignores 2-char term names because of, well, poor assumptions and coding. Changed tkterm to use longer names. Heath Moore <[email protected]> noted that exp_clib could lock up if remtime happened to be precisely 0. Recoded to avoid. At request of Per Otterholm <[email protected]>, wrote script to read from stdin and echo passwords (exercise 9 in Tk chapter of Expect book). Added to example directory as passwdprompt. Josh Purinton <[email protected]> pointed out that by default, SIGINT/TERM should cause expect's return status to be 1, not 0. Paul Reithmuller <[email protected]> noted that unbuffer shouldn't postprocess its output. Added stty_init. Mordechai T. Abzug <[email protected]> noted that log_file wasn't recording -append status. James Kelly <[email protected]> noted weather example needed new source. Dimitar Haralanov <[email protected]> noted that interact dumped core with interact { timeout 1 } -------------------- check-in: 676ad4907d user: andreas_kupries tags: trunk | |
2003-08-25
| ||
23:17 | file slavedrv_test.dsw was initially added on branch telco-tec-win32-take2-branch. check-in: 3497435e39 user: davygrvy tags: trunk | |
2003-06-16
| ||
19:41 | Synthetic commit for tag activestate_win32_port_start Leaf check-in: ebb0f51526 user: cvs-fast-export tags: trunk, activestate_win32_port_start | |
19:41 | * exp_command.c: Applied patch provided on c.l.t., by Don Libes <[email protected]> in response to a bug report by Dirk Petera <[email protected]> in same place. See thread reference below: http://groups.google.ca/groups?threadm=4791f5a6.0305250619.1a660299%40posting.google.com check-in: 1442e31e94 user: andreas_kupries tags: trunk | |
2003-05-08
| ||
16:54 | * exp_clib.c (expectv): Applied patch provided on c.l.t., by Don Libes <[email protected]> in response to a bug report by "Heath Moore" <[email protected]> in same place: > Regarding expect 5.38... > > I'm using libexpect on RedHat 8.0 to communicate via telnet, > and am having problems with it locking up instead of timing > out. Causing traffic during the lockup breaks the lockup. I > looked at the sources, and think I may have found the reason. > > It appears as though i_read can be called with remtime== 0, > which means do > one read() and return without using alarm(), > even when exp_timeout is non-zero. This would happen if > i_read were to return after receiving non-matching data when > end_time == current_time. The subsequent i_read would then > wait until it received data. check-in: 7cf1194455 user: andreas_kupries tags: trunk | |
2003-02-17
| ||
19:27 | Forgot the makefile. Now disabled the relevant targets too. check-in: 71d3db4bd8 user: andreas_kupries tags: trunk | |
19:24 | * configure.in: Removed the check of configure against configure.in and Makefile.in. It is a hassle to deal with when trying to build straight from CVS, making unsupervised automatic builds difficult check-in: 00d1f0c809 user: andreas_kupries tags: trunk | |
2003-02-15
| ||
00:02 | * configure.in: Made expect aware of tcl stubs. Derived from the * exp_command.h: patches to expect done by Steve Landers * exp_command.c: <[email protected]>. Modifications: * exp_main_sub.c No global cmdinfo structures for 'close' and * exp_main_exp.c: 'return'. Made this per-interpreter information * exp_main_tk.c: as it should be. Using interp assoc data for this. NOTE: stubs is not default, but has to be activated via '--enable-stubs'. * configure: Regenerated. check-in: 9080bccfc6 user: andreas_kupries tags: trunk | |
2003-02-14
| ||
23:42 | * exp_chan.c (exp_close_all): Save the nextPtr in a local variable before calling 'exp_close' as 'expStateFree' can be called from it under some circumstances, possibly causing the memory allocator to smash the value in 'esPtr'. check-in: d2471cd983 user: andreas_kupries tags: trunk | |
2003-02-03
| ||
23:56 | * exp_log.c (expLogChannelOpen): Fixed the bug reported on comp.lang.tcl by Mordechai T. Abzug <[email protected]>. The bugfix itself was provided by Don Libes. check-in: fd5f0706a7 user: andreas_kupries tags: trunk | |
2002-10-25
| ||
20:44 | * exp_command.c (Exp_SpawnCmd): Tcl_GetChannelHandle expected a ClientData*, but got an int*. sizeof(int) != sizeof(ClientData) on 64bit platforms. Crashed the command on a PA-RISC 2.0 machine with --enable-64bit set. Fix: Use temp. variables of type ClientData to retrieve the fd's, and copy this into the actual variables, with a cast to int. check-in: eb86e703b4 user: andreas_kupries tags: trunk | |
2002-09-25
| ||
23:03 | * configure: regen'ed * configure.in: use tcl_libdir in EXP_LIB_SPEC instead of ${INSTALL_ROOT}${exec_prefix}/lib (steffen) * exp_main_tk.c (Tk_Init2): don't call XSynchronize on OS X. check-in: 7b2e07257e user: hobbs tags: trunk | |
2002-08-30
| ||
02:49 | file TclAdaptor.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 6ade05e446 user: davygrvy tags: trunk | |
02:49 | file config.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 86e7d64027 user: davygrvy tags: trunk | |
2002-08-08
| ||
16:45 | * Merged changes from the official version 5.38 of expect into the SF sources. See details below. * Makefile.in: Added generation of MD5 checksum for distributed archive. * rftp: Bugfix by Curt Schroeder, see HISTORY * HISTORY: Updated with new info. * configure: Updated version info. * configure.in: Updated version info. check-in: 07bce70538 user: andreas_kupries tags: trunk | |
2002-07-03
| ||
02:46 | file expWinConsoleDetour.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 7a77edb330 user: davygrvy tags: trunk | |
02:46 | file expWinConsoleDetour.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 5ab6205fa3 user: davygrvy tags: trunk | |
02:46 | file expWinSlaveTrapDetour.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 8e05d03d30 user: davygrvy tags: trunk | |
2002-06-28
| ||
01:26 | file expWinTestClientInteract.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 00075af63b user: davygrvy tags: trunk | |
2002-06-27
| ||
22:49 | file expWinInjectorIPC.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 815d077c78 user: davygrvy tags: trunk | |
04:37 | file expWinTestClient.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: cb36ce616c user: davygrvy tags: trunk | |
04:37 | file expWinTestClientConio.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 2064717b17 user: davygrvy tags: trunk | |
04:37 | file expWinTestClientStdio.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 81073c651b user: davygrvy tags: trunk | |
2002-06-26
| ||
22:43 | no message check-in: e20b5eecfa user: davygrvy tags: trunk | |
22:43 | Added notes from Larry Virden about a blind rainmaker error condition. check-in: 01f925d7cd user: davygrvy tags: trunk | |
21:48 | * example/weather: updated script to use rainmaker.wunderground.com instead of cirrus.sprl.umich.edu. The old service is closed. check-in: e66b5ed1f9 user: davygrvy tags: trunk | |
2002-06-23
| ||
09:20 | file expWinClientTransportConio.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 7276ae927e user: davygrvy tags: trunk | |
09:20 | file expWinClientTransportStdio.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: f46a760084 user: davygrvy tags: trunk | |
08:52 | file expWinClientStdio.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 0fd2a7bb0f user: davygrvy tags: trunk | |
08:21 | file expWinClientTransport.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: e1cfffb89d user: davygrvy tags: trunk | |
2002-06-22
| ||
14:01 | file expWinConsoleKeyMap.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: b71393f231 user: davygrvy tags: trunk | |
2002-06-19
| ||
06:42 | file inject.rc was initially added on branch telco-tec-win32-take2-branch. check-in: 3ada931c59 user: davygrvy tags: trunk | |
04:06 | file expWinInjectorMain.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 205c2455c5 user: davygrvy tags: trunk | |
04:06 | file injector.dsp was initially added on branch telco-tec-win32-take2-branch. check-in: d953ef0e43 user: davygrvy tags: trunk | |
04:06 | file injector.dsw was initially added on branch telco-tec-win32-take2-branch. check-in: 5218ebc817 user: davygrvy tags: trunk | |
2002-06-17
| ||
16:50 | * exp_main_tk.c: #ifdef'd definition of "matherr". This hack is not required for 8.4 anymore. But still for 8.3. check-in: 960db96095 user: andreas_kupries tags: trunk | |
2002-05-14
| ||
01:10 | Fixed bad interaction involving multibyte UTF8 characters between send -s and Tcl. check-in: f8eb1fb949 user: libes tags: trunk | |
2002-05-09
| ||
14:03 | multixterm fixes check-in: c53869984d user: libes tags: trunk | |
2002-04-17
| ||
04:07 | Made multixterm handle user-supplied arguments. check-in: cdab5f4ef5 user: libes tags: trunk | |
2002-04-16
| ||
21:00 | misc updates check-in: 5956f21ff5 user: libes tags: trunk | |
2002-04-15
| ||
23:11 | Added support for user-defined argument in multixterm. check-in: b807500710 user: libes tags: trunk | |
18:05 | New Expect application to control multiple xterms simultaneously. check-in: d3f6917fa3 user: libes tags: trunk | |
2002-04-07
| ||
21:26 | Fixed bug in background handler that would occur when an action did a wait thereby invalidating esPtr. check-in: cee151792c user: libes tags: trunk | |
2002-03-25
| ||
22:11 | * exp_main_sub.c: Fixed typo in merge of #459646. Thanks to Hemang Lavana. check-in: 2db7d52055 user: andreas_kupries tags: trunk | |
21:05 | * Andreas Kupries mods to provide CONST support per TIP 27 (Fixed SF Patch #525074). check-in: c5481d4f9c user: andreas_kupries tags: trunk | |
20:55 | * exp_log.c (expStdoutLogU): Merged fix for SF Bug #513382 into the HEAD (The source of the patch is "expect-sf418892-sf439042-branch"). Use Tcl_WriteChars/Tcl_Flush instead of 'fwrite' for tcl 8.1 and beyond to enforce correct conversion of the internal UTF/8 into the external representation. check-in: cdbc65c18b user: andreas_kupries tags: trunk | |
20:51 | * Merged fix for SF Bug #459646 into the HEAD (The source of the patch is "expect-sf418892-sf439042-branch"). check-in: 0d94ed6f74 user: andreas_kupries tags: trunk | |
20:46 | * Merged fix for SF Bug #439042 into the HEAD (The source of the patch is "expect-sf418892-sf439042-branch"). check-in: 718efcd6cb user: andreas_kupries tags: trunk | |
20:43 | * Merged fix for SF Bug #418892 into the HEAD. (The source of the patch is "expect-sf418892-sf439042-branch"). check-in: 3b7fdce472 user: andreas_kupries tags: trunk | |
2002-03-23
| ||
04:55 | Andreas Kupries mods to provide CONST support per TIP 27. check-in: 64a314a49a user: libes tags: trunk | |
2002-03-22
| ||
05:25 | file test1.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: d2e2533ad2 user: davygrvy tags: trunk | |
05:25 | file test1.dsp was initially added on branch telco-tec-win32-take2-branch. check-in: f233791940 user: davygrvy tags: trunk | |
2002-03-12
| ||
21:33 | file expWinSpawnStdioClient.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 1169aa4d9b user: davygrvy tags: trunk | |
18:41 | file expWinDynloadTclStubs.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 35618c58f1 user: davygrvy tags: trunk | |
16:42 | file TclHash.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 29bfed7527 user: davygrvy tags: trunk | |
07:09 | file expWinSlaveTrap.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: d2ffa55bf7 user: davygrvy tags: trunk | |
07:09 | file expWinSpawnClient.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 7692030c20 user: davygrvy tags: trunk | |
01:38 | file expWinMessage.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 412254e87f user: davygrvy tags: trunk | |
01:38 | file expWinMessage.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 9ecea9a885 user: davygrvy tags: trunk | |
2002-03-11
| ||
05:36 | file expWinSpawnPipeClient.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 429e50cb9c user: davygrvy tags: trunk | |
00:32 | file expWinUtils.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 726c2091cc user: davygrvy tags: trunk | |
00:32 | file expWinUtils.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 872a08796a user: davygrvy tags: trunk | |
00:31 | file TclAdapter.hpp was initially added on branch telco-tec-win32-take2-branch. check-in: 452d49fc7e user: davygrvy tags: trunk | |
00:31 | file expWinTest.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: e502d6cc51 user: davygrvy tags: trunk | |
00:31 | file slavedrv_test.dsp was initially added on branch telco-tec-win32-take2-branch. check-in: 1ecb9d502f user: davygrvy tags: trunk | |
2002-03-09
| ||
01:42 | file slavedrv.rc was initially added on branch telco-tec-win32-take2-branch. check-in: 350d3fb408 user: davygrvy tags: trunk | |
01:42 | file slavedrvmc.mc was initially added on branch telco-tec-win32-take2-branch. check-in: 2dd67cb94e user: davygrvy tags: trunk | |
2002-03-08
| ||
23:49 | file slavedrv.mc was initially added on branch telco-tec-win32-take2-branch. check-in: 8a5e8cbe1a user: davygrvy tags: trunk | |
2002-03-07
| ||
03:25 | file expWinConsoleDebugger.cpp was initially added on branch telco-tec-win32-take2-branch. check-in: 17a0148aee user: davygrvy tags: trunk | |