commit | afa9bc0ec54c4cda34cf21e3542e417c995eff6c | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat Apr 10 15:43:17 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sat Apr 10 19:27:41 2021 +0200 |
tree | a59374c4dbff8c84e990a44fe45c84169471615f | |
parent | ad14c2681b957039825cfbe78223d4281f4b783c [diff] |
MINOR: initcall: uniformize the section names between MacOS and other unixes Due to length restrictions on OSX the initcall sections are called "i_" there while they're called "init_" on other OSes. However the start and end of sections are still called "__start_init_" and "__stop_init_", which forces to have distinct code between the OSes. Let's switch everyone to "i_" and rename the symbols accordingly.