|
lib60870-C
2.3.2
C source code library for the IEC 60870-5-101/104 protocols
|

Typedefs | |
| typedef struct sThread * | Thread |
| typedef void * | Semaphore |
| typedef void *(* | ThreadExecutionFunction) (void *) |
Functions | |
| PAL_API Thread | Thread_create (ThreadExecutionFunction function, void *parameter, bool autodestroy) |
| Create a new Thread instance. More... | |
| PAL_API void | Thread_start (Thread thread) |
| Start a Thread. More... | |
| PAL_API void | Thread_destroy (Thread thread) |
| Destroy a Thread and free all related resources. More... | |
| PAL_API void | Thread_sleep (int millies) |
| Suspend execution of the Thread for the specified number of milliseconds. | |
| PAL_API Semaphore | Semaphore_create (int initialValue) |
| PAL_API void | Semaphore_wait (Semaphore self) |
| PAL_API void | Semaphore_post (Semaphore self) |
| PAL_API void | Semaphore_destroy (Semaphore self) |
| typedef void* Semaphore |
Qpaque reference of a Semaphore instance
| typedef struct sThread* Thread |
Opaque reference of a Thread instance
| typedef void*(* ThreadExecutionFunction) (void *) |
Reference to a function that is called when starting the thread
| PAL_API Thread Thread_create | ( | ThreadExecutionFunction | function, |
| void * | parameter, | ||
| bool | autodestroy | ||
| ) |
Create a new Thread instance.
| function | the entry point of the thread |
| parameter | a parameter that is passed to the threads start function |
| autodestroy | the thread is automatically destroyed if the ThreadExecutionFunction has finished. |
| PAL_API void Thread_destroy | ( | Thread | thread | ) |
Destroy a Thread and free all related resources.
| thread | the Thread instance to destroy |
| PAL_API void Thread_start | ( | Thread | thread | ) |
Start a Thread.
This function invokes the start function of the thread. The thread terminates when the start function returns.
| thread | the Thread instance to start |