| 63 | } |
| 64 | |
| 65 | void* RoutineFunc(void* args) |
| 66 | { |
| 67 | co_enable_hook_sys(); |
| 68 | |
| 69 | stRoutineArgs_t* g = (stRoutineArgs_t*)args; |
| 70 | |
| 71 | SetAndGetEnv(g->iRoutineID); |
| 72 | return NULL; |
| 73 | } |
| 74 | |
| 75 | int main(int argc, char* argv[]) |
| 76 | { |
nothing calls this directly
no test coverage detected