1 #include "threads_impl.h"
2 
pthread_mutex_consistent(pthread_mutex_t * m)3 int pthread_mutex_consistent(pthread_mutex_t* m) {
4     // We do not support robust pthread_mutex_ts.
5     return EINVAL;
6 }
7