From 1e240521d214b088e33747a9cf9abbc4baae993f Mon Sep 17 00:00:00 2001 From: kib Date: Mon, 21 Mar 2016 06:46:16 +0000 Subject: From libthr, remove special and strange code to set up session and control terminal, activated when running with pid 1. It is application duty to handle this, and unsuspecting init replacements which are linked with libthr would be broken by this. The pre-resolving of getpid() is restored, just in case. Reviewed by: jilles Sponsored by: The FreeBSD Foundation MFC after: 2 weeks --- lib/libthr/thread/thr_rtld.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/libthr/thread/thr_rtld.c') diff --git a/lib/libthr/thread/thr_rtld.c b/lib/libthr/thread/thr_rtld.c index cb20098..6c407d1 100644 --- a/lib/libthr/thread/thr_rtld.c +++ b/lib/libthr/thread/thr_rtld.c @@ -227,6 +227,7 @@ _thr_rtld_init(void) _rtld_atfork_post(NULL); _malloc_prefork(); _malloc_postfork(); + getpid(); syscall(SYS_getpid); /* mask signals, also force to resolve __sys_sigprocmask PLT */ -- cgit v1.1