2 This file is part of catta.
4 catta is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 catta is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
12 Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with catta; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
27 #include <catta/timeval.h>
28 #include <catta/simple-watch.h>
29 #include <catta/log.h>
31 #include "../src/timeeventq.h"
33 #define POINTER_TO_INT(p) ((int) (long) (p))
34 #define INT_TO_POINTER(i) ((void*) (long) (i))
36 static CattaTimeEventQueue *q = NULL;
38 static void callback(CattaTimeEvent*e, void* userdata) {
39 struct timeval tv = {0, 0};
41 catta_log_info("callback(%i)", POINTER_TO_INT(userdata));
42 catta_elapse_time(&tv, 1000, 100);
43 catta_time_event_update(e, &tv);
46 int main(CATTA_GCC_UNUSED int argc, CATTA_GCC_UNUSED char *argv[]) {
50 s = catta_simple_poll_new();
52 q = catta_time_event_queue_new(catta_simple_poll_get(s));
54 catta_time_event_new(q, catta_elapse_time(&tv, 5000, 100), callback, INT_TO_POINTER(1));
55 catta_time_event_new(q, catta_elapse_time(&tv, 5000, 100), callback, INT_TO_POINTER(2));
57 catta_log_info("starting");
60 if (catta_simple_poll_iterate(s, -1) != 0)
63 catta_time_event_queue_free(q);
64 catta_simple_poll_free(s);