================ 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. ================ */
| 705 | ================ |
| 706 | */ |
| 707 | void idThread::CallFunction( const function_t *func, bool clearStack ) { |
| 708 | ClearWaitFor(); |
| 709 | interpreter.EnterFunction( func, clearStack ); |
| 710 | } |
| 711 | |
| 712 | /* |
| 713 | ================ |
no test coverage detected