#include <pthread.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include "Debug.H"
Go to the source code of this file.
◆ THREAD_COND_WAITBUSY_ERROR
One or more threads is waiting on the Cond variable. 
Definition at line 38 of file Thread.H.
 
 
◆ THREAD_CREATE_ERROR
Couldn't create the thread error. 
Definition at line 31 of file Thread.H.
 
 
◆ THREAD_MUTEX_DEADLK_ERROR
The mutex is already locked. 
Definition at line 33 of file Thread.H.
 
 
◆ THREAD_MUTEX_DESTROY_LOCKED_ERROR
The mutex can't be destroyed when locked. 
Definition at line 35 of file Thread.H.
 
 
◆ THREAD_MUTEX_DONTOWN_ERROR
The thread doesn't own the mutex. 
Definition at line 34 of file Thread.H.
 
 
◆ THREAD_MUTEX_LOCKBUSY_WARNING
The mutex can't be locked as it is already locked. 
Definition at line 36 of file Thread.H.
 
 
◆ THREAD_MUTEX_UNINIT_ERROR
The mutex wasn't initialised error. 
Definition at line 32 of file Thread.H.
 
 
◆ THREAD_NOTFOUND_ERROR
The thread can't be found. 
Definition at line 37 of file Thread.H.
 
 
◆ THREAD_SCHED_ERROR
Scheduling setting error. 
Definition at line 39 of file Thread.H.