reactor-c
C Runtime for Lingua Franca
Loading...
Searching...
No Matches
lf_POSIX_threads_support.h
Go to the documentation of this file.
1/* POSIX API support for the C target of Lingua Franca. */
2
3
35#ifndef LF_POSIX_THREADS_SUPPORT_H
36#define LF_POSIX_THREADS_SUPPORT_H
37
38#include <pthread.h>
39
40typedef pthread_mutex_t lf_mutex_t;
41typedef struct {
43 pthread_cond_t condition;
44} lf_cond_t;
45typedef pthread_t lf_thread_t;
46
47#endif
pthread_t lf_thread_t
Definition lf_POSIX_threads_support.h:45
pthread_mutex_t lf_mutex_t
Definition lf_POSIX_threads_support.h:40
void * lf_cond_t
Definition lf_arduino_support.h:119
struct k_mutex lf_mutex_t
Definition lf_zephyr_support.h:46
pthread_cond_t condition
Definition lf_POSIX_threads_support.h:43
lf_mutex_t * mutex
Definition lf_POSIX_threads_support.h:42