| 1041 | |
| 1042 | |
| 1043 | void co_disable_hook_sys() |
| 1044 | { |
| 1045 | stCoRoutine_t *co = GetCurrThreadCo(); |
| 1046 | if( co ) |
| 1047 | { |
| 1048 | co->cEnableSysHook = 0; |
| 1049 | } |
| 1050 | } |
| 1051 | bool co_is_enable_sys_hook() |
| 1052 | { |
| 1053 | stCoRoutine_t *co = GetCurrThreadCo(); |
nothing calls this directly
no test coverage detected