diff options
author | Uros Majstorovic <majstor@majstor.org> | 2019-10-16 00:02:41 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2019-10-16 00:02:41 +0200 |
commit | fae5fce8ffecdcb6a041435adb7254d720884de3 (patch) | |
tree | d40fd15a00144471642d3638fd553c6bfd537754 /code/fe310/eos/event.h | |
parent | 86957adfc5e2177010db896581763b4cba07273e (diff) |
envent q added eos_evtq_wait
Diffstat (limited to 'code/fe310/eos/event.h')
-rw-r--r-- | code/fe310/eos/event.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/code/fe310/eos/event.h b/code/fe310/eos/event.h index a9a98ef..3d9692d 100644 --- a/code/fe310/eos/event.h +++ b/code/fe310/eos/event.h @@ -10,4 +10,6 @@ void eos_evtq_pop(unsigned char *type, unsigned char **buffer, uint16_t *len); void eos_evtq_bad_handler(unsigned char type, unsigned char *buffer, uint16_t len); void eos_evtq_set_handler(unsigned char type, eos_evt_fptr_t handler); void eos_evtq_set_flags(unsigned char type, uint8_t flags); +void eos_evtq_wait(unsigned char type, unsigned char *selector, uint16_t sel_len, unsigned char **buffer, uint16_t *len); void eos_evtq_loop(void); + |