#endif
/**
- * Mutex defines.
- *
- * f_thread_mutex_*_d:
- * - robust: The mutex is in a robust state.
- * - stalled: The mutex is in a stalled state (non-robust), such as when F_dead is returned on lock attempts.
- */
-#ifndef _di_f_thread_mutex_d_
- #define f_thread_mutex_robust_d PTHREAD_MUTEX_ROBUST
- #define f_thread_mutex_stalled_d PTHREAD_MUTEX_STALLED
-#endif // _di_f_thread_mutex_d_
-
-/**
* A typedef representing pthread_mutex_t.
*
* This variable cannot be cleared by setting value to 0, so there is no clear macro provided.