diff options
author | Martin Mares <mj@ucw.cz> | 1999-02-13 19:43:21 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-02-13 19:43:21 +0000 |
commit | 4c9dd1e4b95e273eacc900abb63db4b8bafaf34b (patch) | |
tree | 36b8376959e89cecaeefdb7deff04b50cad6cb7f /sysdep/unix/unix.h | |
parent | 1a54b1c6ac5177a1ef21f799f6cf28f355c5bbe9 (diff) |
Synchronize signals to the main select/event/timer loop.
Parse command line options.
Diffstat (limited to 'sysdep/unix/unix.h')
-rw-r--r-- | sysdep/unix/unix.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysdep/unix/unix.h b/sysdep/unix/unix.h index c25f3edb..a79db2ed 100644 --- a/sysdep/unix/unix.h +++ b/sysdep/unix/unix.h @@ -9,8 +9,16 @@ #ifndef _BIRD_UNIX_H_ #define _BIRD_UNIX_H_ +/* main.c */ + +void async_config(void); +void async_dump(void); + /* io.c */ +volatile int async_config_flag; +volatile int async_dump_flag; + void io_init(void); void io_loop(void); void fill_in_sockaddr(struct sockaddr_in *sa, ip_addr a, unsigned port); |