| 29 | #endif |
| 30 | |
| 31 | bool smileThreadCreate(smileThread &thrd, smileThreadFunc func, void *arg) |
| 32 | { |
| 33 | return pthread_create(&thrd, NULL, func, arg) == 0; |
| 34 | } |
| 35 | |
| 36 | void smileThreadJoin(smileThread &thrd) |
| 37 | { |
no outgoing calls
no test coverage detected