| 1 | /* |
| 2 | * This Source Code Form is subject to the terms of the Mozilla Public |
| 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 5 | * |
| 6 | * Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. |
| 7 | */ |
| 8 | |
| 9 | #ifndef _HANDLERS_H |
| 10 | #define _HANDLERS_H 1 |
| 11 | |
| 12 | #include <signal.h> |
| 13 | |
| 14 | void handler(int sig); |
| 15 | void huphandler(int sig); |
| 16 | void childhandler(void); |
| 17 | void segvhandler(int sig); |
| 18 | void reinitialize(void); |
| 19 | |
| 20 | #endif |
| 21 | |
| 22 | /* vim:set ts=4 sw=4 noexpandtab: */ |
| 23 | |