blob: 598001eeb6a4cc729481a7acda2bd6d96d786b8e [file] [log] [blame]
Willy Tarreau8f38bd02009-05-10 08:53:33 +02001/*
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002 * include/types/signal.h
Willy Tarreau8f38bd02009-05-10 08:53:33 +02003 * Asynchronous signal delivery functions descriptors.
4 *
Willy Tarreau24f4efa2010-08-27 17:56:48 +02005 * Copyright 2000-2010 Willy Tarreau <w@1wt.eu>
Willy Tarreau8f38bd02009-05-10 08:53:33 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau24f4efa2010-08-27 17:56:48 +020014#ifndef _TYPES_SIGNAL_H
15#define _TYPES_SIGNAL_H
16
17
Willy Tarreau8f38bd02009-05-10 08:53:33 +020018#include <signal.h>
19#include <common/config.h>
Willy Tarreau24f4efa2010-08-27 17:56:48 +020020#include <common/mini-clist.h>
Willy Tarreau8f38bd02009-05-10 08:53:33 +020021#include <common/standard.h>
22
Willy Tarreau24f4efa2010-08-27 17:56:48 +020023/* flags for -> flags */
24#define SIG_F_ONE_SHOOT 0x0001 /* unregister handler before calling it */
25#define SIG_F_TYPE_FCT 0x0002 /* handler is a function + arg */
26#define SIG_F_TYPE_TASK 0x0004 /* handler is a task + reason */
27
28/* those are highly dynamic and stored in pools */
29struct sig_handler {
30 struct list list;
31 void *handler; /* function to call or task to wake up */
32 int arg; /* arg to pass to function, or signals*/
33 int flags; /* SIG_F_* */
34};
35
36/* one per signal */
Willy Tarreau8f38bd02009-05-10 08:53:33 +020037struct signal_descriptor {
Willy Tarreau24f4efa2010-08-27 17:56:48 +020038 int count; /* number of times raised */
39 struct list handlers; /* sig_handler */
Willy Tarreau8f38bd02009-05-10 08:53:33 +020040};
Willy Tarreau24f4efa2010-08-27 17:56:48 +020041
42#endif /* _TYPES_SIGNAL_H */
43
44/*
45 * Local variables:
46 * c-indent-level: 8
47 * c-basic-offset: 8
48 * End:
49 */