diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-06-05 12:12:39 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-06-05 12:12:39 -0300 |
| commit | f080f1e4bc9475500c0b5ef3c559c0e105290137 (patch) | |
| tree | 461f6a7fef0014900f5f36423a92bde964a4ae94 /src/thread.hh | |
| parent | ebfa80ab573b1a0ef9aec65a45fd0ae751196207 (diff) | |
| download | game-f080f1e4bc9475500c0b5ef3c559c0e105290137.tar.gz game-f080f1e4bc9475500c0b5ef3c559c0e105290137.zip | |
reduce clutter with struct dividing comments
Diffstat (limited to 'src/thread.hh')
| -rw-r--r-- | src/thread.hh | 4 |
1 files changed, 1 insertions, 3 deletions
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; |
