| 25 | using namespace std; |
| 26 | |
| 27 | static void *thread_func( void * arg ) |
| 28 | { |
| 29 | stCoClosure_t *p = (stCoClosure_t*) arg; |
| 30 | p->exec(); |
| 31 | return 0; |
| 32 | } |
| 33 | static void batch_exec( vector<stCoClosure_t*> &v ) |
| 34 | { |
| 35 | vector<pthread_t> ths; |
nothing calls this directly
no outgoing calls
no test coverage detected