From: Kevin Day Date: Mon, 1 Sep 2025 23:36:33 +0000 (-0500) Subject: Cleanup: Remove redundant mutex defines. X-Git-Tag: 0.7.3~12 X-Git-Url: https://www.git.kevux.org/?a=commitdiff_plain;h=146e056e0c45294d22e857d656e380049752b6d8;p=fll Cleanup: Remove redundant mutex defines. --- 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.