From 146e056e0c45294d22e857d656e380049752b6d8 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 1 Sep 2025 18:36:33 -0500 Subject: [PATCH] Cleanup: Remove redundant mutex defines. --- level_0/f_thread/c/thread/mutex.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/level_0/f_thread/c/thread/mutex.h b/level_0/f_thread/c/thread/mutex.h index e45f7db..0de9915 100644 --- a/level_0/f_thread/c/thread/mutex.h +++ b/level_0/f_thread/c/thread/mutex.h @@ -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. -- 1.8.3.1