More Slirp cleanups.

This commit is contained in:
waltje
2017-05-11 03:30:55 -04:00
parent deb30e41a0
commit ced75af0c2
4 changed files with 47 additions and 57 deletions

View File

@@ -39,11 +39,11 @@ extern int timer_start;
timer_update_outstanding(); \
} while (0)
void timer_process();
void timer_update_outstanding();
void timer_reset();
int timer_add(void (*callback)(void *priv), int *count, int *enable, void *priv);
void timer_set_callback(int timer, void (*callback)(void *priv));
extern void timer_process(void);
extern void timer_update_outstanding(void);
extern void timer_reset(void);
extern int timer_add(void (*callback)(void *priv), int *count, int *enable, void *priv);
extern void timer_set_callback(int timer, void (*callback)(void *priv));
#define TIMER_ALWAYS_ENABLED &timer_one