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 e45f7db0f..0de9915a0 100644 --- a/level_0/f_thread/c/thread/mutex.h +++ b/level_0/f_thread/c/thread/mutex.h @@ -16,18 +16,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. * -- 2.47.3