diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-05-08 21:29:57 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-05-08 21:29:57 (GMT) |
commit | 20f0238cf86a6819ed9071d84a4620e6b2ce5d2d (patch) | |
tree | 5a8b6c2bd488de589fc6fdbff1859e5d9caf8167 /ds9/library | |
parent | 6736e9427bcbabf9a02b7549337df06226b805ae (diff) | |
download | blt-20f0238cf86a6819ed9071d84a4620e6b2ce5d2d.zip blt-20f0238cf86a6819ed9071d84a4620e6b2ce5d2d.tar.gz blt-20f0238cf86a6819ed9071d84a4620e6b2ce5d2d.tar.bz2 |
add ds9 threads parser
Diffstat (limited to 'ds9/library')
-rw-r--r-- | ds9/library/source.tcl | 2 | ||||
-rw-r--r-- | ds9/library/util.tcl | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/ds9/library/source.tcl b/ds9/library/source.tcl index fc00f74..b7b76c1 100644 --- a/ds9/library/source.tcl +++ b/ds9/library/source.tcl @@ -296,6 +296,8 @@ source $ds9(root)/library/smoothparser.tcl source $ds9(root)/library/smoothlex.tcl source $ds9(root)/library/sourceparser.tcl source $ds9(root)/library/sourcelex.tcl +source $ds9(root)/library/threadsparser.tcl +source $ds9(root)/library/threadslex.tcl source $ds9(root)/library/threedparser.tcl source $ds9(root)/library/threedlex.tcl source $ds9(root)/library/tileparser.tcl diff --git a/ds9/library/util.tcl b/ds9/library/util.tcl index 5a67d90..f3f44d7 100644 --- a/ds9/library/util.tcl +++ b/ds9/library/util.tcl @@ -1352,10 +1352,19 @@ proc ProcessThreadsCmd {varname iname} { upvar $varname var upvar $iname i + global debug + if {$debug(tcl,parser)} { + threads::YY_FLUSH_BUFFER + threads::yy_scan_string [lrange $var $i end] + threads::yyparse + incr i [expr $threads::yycnt-1] + } else { + global ds9 set ds9(threads) [lindex $var $i] ChangeThreads } +} proc ProcessSendThreadsCmd {proc id param} { global ds9 |