mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 08:47:45 -04:00
* Fix: build errors, remove src directory and bring all files up * Fix: Remove not needed header * Doc: fix main comments * Doc: fix comment Co-authored-by: Alfred Gedeon <gedeonag@amazon.com>
18 lines
376 B
C
18 lines
376 B
C
#ifndef _WAIT_FOR_EVENT_H_
|
|
#define _WAIT_FOR_EVENT_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <time.h>
|
|
|
|
struct event;
|
|
|
|
struct event * event_create();
|
|
void event_delete( struct event * );
|
|
bool event_wait( struct event * ev );
|
|
bool event_wait_timed( struct event * ev,
|
|
time_t ms );
|
|
void event_signal( struct event * ev );
|
|
|
|
|
|
|
|
#endif /* ifndef _WAIT_FOR_EVENT_H_ */
|