]> Kevux Git Server - fll/commitdiff
Cleanup: Remove redundant mutex defines.
authorKevin Day <Kevin@kevux.org>
Mon, 1 Sep 2025 23:36:33 +0000 (18:36 -0500)
committerKevin Day <Kevin@kevux.org>
Mon, 1 Sep 2025 23:36:33 +0000 (18:36 -0500)
level_0/f_thread/c/thread/mutex.h

index e45f7db0fb8bcc87b294dfd6dc90c290261f025f..0de9915a0f9fda5fdd8c72be278f1d114a46e722 100644 (file)
@@ -17,18 +17,6 @@ extern "C" {
 #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.