From f080f1e4bc9475500c0b5ef3c559c0e105290137 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Thu, 5 Jun 2025 12:12:39 -0300 Subject: reduce clutter with struct dividing comments --- src/thread.hh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/thread.hh') diff --git a/src/thread.hh b/src/thread.hh index 20cfa0b..cd8a881 100644 --- a/src/thread.hh +++ b/src/thread.hh @@ -16,15 +16,13 @@ int JoinThread(ThreadHandle Handle); void DelayThread(int Seconds, int MicroSeconds); struct Semaphore { - // REGULAR FUNCTIONS - // ========================================================================= Semaphore(int Value); ~Semaphore(void); void up(void); void down(void); // DATA - // ========================================================================= + // ================= int value; pthread_mutex_t mutex; pthread_cond_t condition; -- cgit v1.2.3