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
|
/* This file was taken from XaoS-the fast portable realtime interactive
fractal zoomer. but it is simplified for BB. You may get complette
sources at XaoS homepage (http://www.paru.cas.cz/~hubicka/XaoS
*/
/*
* XaoS, a fast portable realtime fractal zoomer
* Copyright (C) 1996,1997 by
*
* Jan Hubicka (hubicka@paru.cas.cz)
* Thomas Marsh (tmarsh@austin.ibm.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef TIMERS_H
#define TIMERS_H
#include "config.h"
#ifndef _plan9_
#ifdef HAVE_GETTIMEOFDAY
#ifdef HAVE_UNISTD_H
/*#include <unistd.h>*/
#endif
#else
#ifdef HAVE_FTIME
#include <sys/timeb.h>
#endif
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
struct timer {
#ifdef HAVE_UCLOCK
uclock_t lastactivated;
#else
#ifdef USE_CLOCK
int lastactivated;
#else
#ifdef HAVE_GETTIMEOFDAY
struct timeval lastactivated;
#else
#ifdef _plan9_
int lastactivated;
#else
#ifdef HAVE_FTIME
struct timeb lastactivated;
#endif
#endif
#endif
#endif
#endif
int interval;
int wait;
void (*handler) (void);
void (*multihandler) (int);
struct timer *next, *previous, *group;
};
typedef struct timer tl_timer;
typedef struct timer tl_group;
void tl_update_time(void);
int tl_lookup_timer(tl_timer * t);
void tl_reset_timer(tl_timer * t);
tl_timer *tl_create_timer(void);
tl_group *tl_create_group(void);
void tl_set_interval(tl_timer * timer, int interval);
void tl_set_handler(tl_timer * timer, void (*handler) (void));
void tl_set_multihandler(tl_timer * timer, void (*handler) (int));
void tl_add_timer(tl_group * group, tl_timer * timer);
void tl_remove_timer(tl_timer * timer);
void tl_free_timer(tl_timer * timer);
void tl_free_group(tl_group * timer);
int tl_process_group(tl_group * group);
extern tl_group *syncgroup, *asyncgroup;
void tl_sleep(int);
#endif /* TIMER_H */
|