|
libiec61850
1.2.0
|
#include <stdbool.h>Go to the source code of this file.
Typedefs | |
| typedef struct sThread * | Thread |
| typedef void * | Semaphore |
| typedef void *(* | ThreadExecutionFunction) (void *) |
Functions | |
| Thread | Thread_create (ThreadExecutionFunction function, void *parameter, bool autodestroy) |
| Create a new Thread instance. More... | |
| void | Thread_start (Thread thread) |
| Start a Thread. More... | |
| void | Thread_destroy (Thread thread) |
| Destroy a Thread and free all related resources. More... | |
| void | Thread_sleep (int millies) |
| Suspend execution of the Thread for the specified number of milliseconds. More... | |
| Semaphore | Semaphore_create (int initialValue) |
| void | Semaphore_wait (Semaphore self) |
| void | Semaphore_post (Semaphore self) |
| void | Semaphore_destroy (Semaphore self) |
1.8.11