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
34
extern
"C"
{
35
#endif
36
37
void
*
mutex_new
();
38
void
mutex_delete
();
39
void
mutex_lock
();
40
bool
mutex_trylock
();
41
void
mutex_unlock
();
42
void
*
mutex_get_owner
();
43
44
#ifdef __cplusplus
45
}
46
#endif
47
#endif
mutex_new
void * mutex_new()
Definition
MutexWrapper.cpp:39
mutex_get_owner
void * mutex_get_owner()
mutex_lock
void mutex_lock()
mutex_trylock
bool mutex_trylock()
mutex_unlock
void mutex_unlock()
mutex_delete
void mutex_delete()
low_level_platform
api
platform
arduino_mbed
MutexWrapper.h
Generated by
1.12.0