| 442 | |
| 443 | } |
| 444 | static int CoRoutineFunc( stCoRoutine_t *co,void * ) |
| 445 | { |
| 446 | if( co->pfn ) |
| 447 | { |
| 448 | co->pfn( co->arg ); |
| 449 | } |
| 450 | co->cEnd = 1; |
| 451 | |
| 452 | stCoRoutineEnv_t *env = co->env; |
| 453 | |
| 454 | co_yield_env( env ); |
| 455 | |
| 456 | return 0; |
| 457 | } |
| 458 | |
| 459 | |
| 460 |
nothing calls this directly
no test coverage detected