| 32 | return 0; |
| 33 | } |
| 34 | static void *routine_func( void * ) |
| 35 | { |
| 36 | stCoEpoll_t * ev = co_get_epoll_ct(); //ct = current thread |
| 37 | co_eventloop( ev,loop,0 ); |
| 38 | return 0; |
| 39 | } |
| 40 | int main(int argc,char *argv[]) |
| 41 | { |
| 42 | int cnt = atoi( argv[1] ); |
nothing calls this directly
no test coverage detected