blob: b863d23b5586c25cdfe5c50d9f5b23ab49c06891 [file] [log] [blame]
Willy Tarreau8f38bd02009-05-10 08:53:33 +02001/*
2 * Asynchronous signal delivery functions descriptors.
3 *
4 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <signal.h>
14#include <common/config.h>
15#include <common/standard.h>
16
17struct signal_descriptor {
18 int count; /* number of times raised */
19 void (*handler)(int sig);
20};