reactor-c
C Runtime for Lingua Franca
Loading...
Searching...
No Matches
MutexWrapper.h
Go to the documentation of this file.
1
25/* Adds mutex support in RTOS-enabled Arduino Boards (MBED)
26 *
27 * @author{Anirudh Rengarajan <arengarajan@berkeley.edu>}
28 */
29
30#ifndef MUTEXWRAPPER_H
31#define MUTEXWRAPPER_H
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37void* mutex_new();
43
44#ifdef __cplusplus
45}
46#endif
47#endif
void * mutex_new()
Definition MutexWrapper.cpp:39
void * mutex_get_owner()
void mutex_lock()
bool mutex_trylock()
void mutex_unlock()
void mutex_delete()