home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1997 November
/
PCWorld_1997-11_cd.bin
/
software
/
programy
/
komix
/
DATA.Z
/
watchdog.tcl
< prev
next >
Wrap
Text File
|
1996-05-29
|
820b
|
29 lines
#---------------------------------------------------------------------------
#
# (c) Westmount Technology 1995
#
# File : @(#)watchdog.tcl 1.3
# Author : Marcel Bancken
# Description : Instantiation of Watchdog
#
#---------------------------------------------------------------------------
# SccsId = @(#)watchdog.tcl 1.3 19 Jan 1996 Copyright 1995 Westmount Technology
source [m4_path_name tcl libocl.tcl]
require platform.tcl
require procs.tcl
require messagehdl.tcl
require clwatchdog.tcl
if {[llength $argv] != 3} {
puts stderr "Watchdog requires 3 arguments: <interp> <script> <endScript>"
exit 1
}
ClWatchdog new .watchdog \
-interp [lindex $argv 0] \
-script [lindex $argv 1] \
-endScript [lindex $argv 2]
set returnValue [.watchdog execute]
exit $returnValue