diff options
author | Dave Allison <dallison@google.com> | 2014-05-15 20:35:11 -0700 |
---|---|---|
committer | Tim Murray <timmurray@google.com> | 2014-06-02 15:54:28 -0700 |
commit | b311ca9ee82c91d411164a90e9c5b32565a1e43c (patch) | |
tree | bb3ddef03207e1ab70d3767a527afde52dd12a86 | |
parent | 2e7d80d10acf95076dfb1f2727455432091de65f (diff) | |
download | system_core-b311ca9ee82c91d411164a90e9c5b32565a1e43c.zip system_core-b311ca9ee82c91d411164a90e9c5b32565a1e43c.tar.gz system_core-b311ca9ee82c91d411164a90e9c5b32565a1e43c.tar.bz2 |
Add LD_PRELOAD for libsigchain.so to the environment
To remove the need to modify the bionic dynamic linker, add the
signal chaining library as a preload in the environment. This
will be picked up by the dynamic linker and will override
sigaction and sigprocmask to allow for signal chaining.
Change-Id: I6e2d0628b009bd01e0ed9aed0b311871b9c8363a
-rw-r--r-- | rootdir/init.environ.rc.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rootdir/init.environ.rc.in b/rootdir/init.environ.rc.in index 927c33d..1f964e3 100644 --- a/rootdir/init.environ.rc.in +++ b/rootdir/init.environ.rc.in @@ -9,3 +9,4 @@ on init export ASEC_MOUNTPOINT /mnt/asec export LOOP_MOUNTPOINT /mnt/obb export BOOTCLASSPATH %BOOTCLASSPATH% + export LD_PRELOAD libsigchain.so |