| 368 | } |
| 369 | |
| 370 | int my_pthread_cond_init(pthread_cond_t *mp, const pthread_condattr_t *attr) |
| 371 | { |
| 372 | int error; |
| 373 | if (!attr) |
| 374 | error=pthread_cond_init(mp,pthread_condattr_default); |
| 375 | else |
| 376 | error=pthread_cond_init(mp,*attr); |
| 377 | return error; |
| 378 | } |
| 379 | |
| 380 | #endif |
| 381 |
nothing calls this directly
no test coverage detected