blob: 87cbdd4eb1866a5efebda104c14fbd4ad1882acc [file] [log] [blame]
William Lallemand48dfbbd2019-04-01 11:29:53 +02001/*
2 * Master Worker
3 *
4 * Copyright HAProxy Technologies 2019 - William Lallemand <wlallemand@haproxy.com>
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#ifndef PROTO_MWORKER_H_
14#define PROTO_MWORKER_H_
15
16void mworker_proc_list_to_env();
17void mworker_env_to_proc_list();
18
William Lallemand3cd95d22019-04-01 11:29:54 +020019
20void mworker_block_signals();
21void mworker_unblock_signals();
22
William Lallemand48dfbbd2019-04-01 11:29:53 +020023#endif /* PROTO_MWORKER_H_ */