diff options
author | Martin Mares <mj@ucw.cz> | 1999-02-13 20:15:36 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-02-13 20:15:36 +0000 |
commit | f4aabcee62890b7c3e999e188ab72752fbb20b79 (patch) | |
tree | 99daddcfbae637f7801f8b70b42ee2b5c9e91178 /sysdep/unix/unix.h | |
parent | 7f3d1a0850ff7f240b2f240db6d44b3a5dee6d48 (diff) |
Perform gracious shutdown upon receipt of SIGTERM. Finally we can
test the whole protocol shutdown code... :)
Diffstat (limited to 'sysdep/unix/unix.h')
-rw-r--r-- | sysdep/unix/unix.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdep/unix/unix.h b/sysdep/unix/unix.h index a79db2ed..e5271021 100644 --- a/sysdep/unix/unix.h +++ b/sysdep/unix/unix.h @@ -13,11 +13,13 @@ void async_config(void); void async_dump(void); +void async_shutdown(void); /* io.c */ volatile int async_config_flag; volatile int async_dump_flag; +volatile int async_shutdown_flag; void io_init(void); void io_loop(void); |