| 853 | } |
| 854 | |
| 855 | void FreeEpoll( stCoEpoll_t *ctx ) |
| 856 | { |
| 857 | if( ctx ) |
| 858 | { |
| 859 | free( ctx->pstActiveList ); |
| 860 | free( ctx->pstTimeoutList ); |
| 861 | FreeTimeout( ctx->pTimeout ); |
| 862 | co_epoll_res_free( ctx->result ); |
| 863 | } |
| 864 | free( ctx ); |
| 865 | } |
| 866 | |
| 867 | stCoRoutine_t *GetCurrCo( stCoRoutineEnv_t *env ) |
| 868 | { |
nothing calls this directly
no test coverage detected