aboutsummaryrefslogtreecommitdiff
path: root/src/thread.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread.hh')
-rw-r--r--src/thread.hh4
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;