================ idThread::CallFunction NOTE: If this is called from within a event called by this thread, the function arguments will be invalid after calling this function. ================ */
| 727 | ================ |
| 728 | */ |
| 729 | void idThread::CallFunction( const function_t *func, bool clearStack ) { |
| 730 | ClearWaitFor(); |
| 731 | interpreter.EnterFunction( func, clearStack ); |
| 732 | } |
| 733 | |
| 734 | /* |
| 735 | ================ |
no test coverage detected