summaryrefslogtreecommitdiff
path: root/docs/sym/libeloop.sym
blob: 7db72a7289d32ee4ab24c36b65191ce5bb802ff3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/***
 * libeloop - Simple Event-Loop Library
 *
 * Copyright (c) 2012-2013 David Herrmann <dh.herrmann@googlemail.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files
 * (the "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 ***/

LIBELOOP_1 {
global:
	ev_eloop_new;
	ev_eloop_ref;
	ev_eloop_unref;
local:
	*;
};

LIBELOOP_2 {
global:
	ev_eloop_flush_fd;
	ev_eloop_dispatch;
	ev_eloop_run;
	ev_eloop_exit;
	ev_eloop_get_fd;

	ev_eloop_new_eloop;
	ev_eloop_add_eloop;
	ev_eloop_rm_eloop;

	ev_fd_new;
	ev_fd_ref;
	ev_fd_unref;

	ev_fd_enable;
	ev_fd_disable;
	ev_fd_is_enabled;
	ev_fd_is_bound;
	ev_fd_set_cb_data;
	ev_fd_update;

	ev_eloop_new_fd;
	ev_eloop_add_fd;
	ev_eloop_rm_fd;

	ev_timer_new;
	ev_timer_ref;
	ev_timer_unref;

	ev_timer_enable;
	ev_timer_disable;
	ev_timer_is_enabled;
	ev_timer_is_bound;
	ev_timer_set_cb_data;
	ev_timer_update;
	ev_timer_drain;

	ev_eloop_new_timer;
	ev_eloop_add_timer;
	ev_eloop_rm_timer;

	ev_counter_new;
	ev_counter_ref;
	ev_counter_unref;

	ev_counter_enable;
	ev_counter_disable;
	ev_counter_is_enabled;
	ev_counter_is_bound;
	ev_counter_set_cb_data;
	ev_counter_inc;

	ev_eloop_new_counter;
	ev_eloop_add_counter;
	ev_eloop_rm_counter;

	ev_eloop_register_signal_cb;
	ev_eloop_unregister_signal_cb;

	ev_eloop_register_child_cb;
	ev_eloop_unregister_child_cb;

	ev_eloop_register_idle_cb;
	ev_eloop_unregister_idle_cb;

	ev_eloop_register_pre_cb;
	ev_eloop_unregister_pre_cb;

	ev_eloop_register_post_cb;
	ev_eloop_unregister_post_cb;
} LIBELOOP_1;