]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re_c/include/event_buffer.h
update
[l4.git] / l4 / pkg / l4re_c / include / event_buffer.h
1 #pragma once
2 /*
3  * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>
4  *     economic rights: Technische Universität Dresden (Germany)
5  *
6  * This file is part of TUD:OS and distributed under the terms of the
7  * GNU General Public License 2.
8  * Please see the COPYING-GPL-2 file for details.
9  *
10  * As a special exception, you may use this file as part of a free software
11  * library without restriction.  Specifically, if other files instantiate
12  * templates or use macros or inline functions from this file, or you compile
13  * this file and link it with other files to produce an executable, this
14  * file does not by itself cause the resulting executable to be covered by
15  * the GNU General Public License.  This exception does not however
16  * invalidate any other reasons why the executable file might be covered by
17  * the GNU General Public License.
18  */
19
20 #include <l4/sys/linkage.h>
21 #include <l4/re/c/event.h>
22
23 EXTERN_C_BEGIN
24
25 typedef struct l4re_event_buffer_consumer_t
26 {
27   unsigned long _obj_buf[8];
28 } l4re_event_buffer_consumer_t;
29
30 //typedef void l4re_event_buffer_consumer_obj_t;
31 //typedef unsigned long l4re_event_buffer_consumer_obj_store_t[8];
32
33 L4_CV void
34 l4re_event_free(l4re_event_t *e) L4_NOTHROW;
35
36 L4_CV long
37 l4re_event_buffer_attach(l4re_event_buffer_consumer_t *evbuf,
38                          l4re_ds_t ds, l4_cap_idx_t rm) L4_NOTHROW;
39
40 L4_CV l4re_event_t *
41 l4re_event_buffer_next(l4re_event_buffer_consumer_t *evbuf) L4_NOTHROW;
42
43 L4_CV void
44 l4re_event_buffer_consumer_foreach_available_event
45   (l4re_event_buffer_consumer_t *evbuf, void *data,
46    L4_CV void (*cb)(l4re_event_t *ev, void *data)) L4_NOTHROW;
47
48 L4_CV void
49 l4re_event_buffer_consumer_process(l4re_event_buffer_consumer_t *evbuf,
50                                    l4_cap_idx_t irq, l4_cap_idx_t thread, void *data,
51                                    L4_CV void (*cb)(l4re_event_t *ev, void *data)) L4_NOTHROW;
52
53 EXTERN_C_END