| 92 | } |
| 93 | |
| 94 | static av_always_inline int pthread_join(pthread_t thread, void **value_ptr) |
| 95 | { |
| 96 | DosWaitThread(&thread.tid, DCWW_WAIT); |
| 97 | |
| 98 | if (value_ptr) |
| 99 | *value_ptr = thread.result; |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex, |
| 105 | const pthread_mutexattr_t *attr) |
no outgoing calls