about summary refs log tree commit diff
path: root/include/signal.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-11-30 17:56:23 -0500
committerRich Felker <dalias@aerifal.cx>2012-11-30 17:56:23 -0500
commita7936f61b23100ac32f51776c5b3e52452c7598c (patch)
treef389101a0cd75932cf5b027d99d49e38233eabe7 /include/signal.h
parent1c322f2f0a9173a3ae8c8bfa12d5d8e92fb5d0ab (diff)
downloadmusl-a7936f61b23100ac32f51776c5b3e52452c7598c.tar.gz
musl-a7936f61b23100ac32f51776c5b3e52452c7598c.tar.xz
musl-a7936f61b23100ac32f51776c5b3e52452c7598c.zip
fix ordering of shared library ctors with respect to libc init
previously, shared library constructors were being called before
important internal things like the environment (extern char **environ)
and hwcap flags (needed for sjlj to work right with float on arm) were
initialized in __libc_start_main. rather than trying to have to
dynamic linker make sure this stuff all gets initialized right, I've
opted to just defer calling shared library constructors until after
the main program's entry point is reached. this also fixes the order
of ctors to be the exact reverse of dtors, which is a desirable
property and possibly even mandated by some languages.

the main practical effect of this change is that shared libraries
calling getenv from ctors will no longer fail.
Diffstat (limited to 'include/signal.h')
0 files changed, 0 insertions, 0 deletions