Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 19, 2009, 2:58:24 PM (15 years ago)
Author:
rgrieder
Message:

Reverted TclThreadManager commits to make a tag (there's possibly still an unresolved issue with the TclThreadManager under linux when terminating the game (mutex assert)).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/core/TclBind.cc

    r3307 r3313  
    7979            this->interpreter_->def("orxonox::crossquery", TclThreadManager::tcl_crossquery, Tcl::variadic());
    8080            this->interpreter_->def("execute", TclBind::tcl_execute, Tcl::variadic());
    81             this->interpreter_->def("orxonox::crossexecute", TclThreadManager::tcl_crossexecute, Tcl::variadic());
    8281
    8382            try
    8483            {
    85                 this->interpreter_->eval("proc query args { orxonox::query [join $args] }");
    86                 this->interpreter_->eval("proc crossquery {id args} { orxonox::crossquery 0 $id [join $args] }");
    87                 this->interpreter_->eval("proc crossexecute {id args} { orxonox::crossquery 0 $id [join $args] }");
     84                this->interpreter_->eval("proc query args { orxonox::query $args }");
     85                this->interpreter_->eval("proc crossquery {id args} { orxonox::crossquery 0 $id $args }");
    8886                this->interpreter_->eval("set id 0");
    8987                this->interpreter_->eval("rename exit tcl::exit; proc exit {} { execute exit }");
Note: See TracChangeset for help on using the changeset viewer.