blob: 25d8c8c7f7b7e90553056da246a91c741eaead07 [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 Lallemand3fa724d2019-04-01 11:29:55 +020023void mworker_accept_wrapper(int fd);
24void mworker_pipe_register();
25
William Lallemand48dfbbd2019-04-01 11:29:53 +020026#endif /* PROTO_MWORKER_H_ */