commit | b6b3df3ed3476141f39a3d57b87f801c659e773c | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Nov 26 16:31:20 2018 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Nov 26 19:50:32 2018 +0100 |
tree | ea24fa9d201a9b79f65126146c238b4e6e42cfdf | |
parent | 2455cebe00cf9027ed79aa7ed2c94129646c9101 [diff] |
MEDIUM: initcall: use initcalls for a few initialization functions signal_init(), init_log(), init_stream(), and init_task() all used to only preset some values and lists. This needs to be done very early to provide a reliable interface to all other users. The calls used to be explicit in haproxy.c:init(). Now they're placed in initcalls at the STG_PREPARE stage. The functions are not exported anymore.