strace.c: use _exit() instead of exit() in child's die()
authorEugene Syromiatnikov <esyr@redhat.com>
Fri, 4 Aug 2017 07:38:50 +0000 (09:38 +0200)
committerDmitry V. Levin <ldv@altlinux.org>
Wed, 20 Dec 2017 22:58:42 +0000 (22:58 +0000)
commit67c4b41ed0a313b361706264db74de747f410c91
treef6ebca471953a90728bfe0d91de9e1de7a4a55cc
parent391446a3593badef85db21e3d66f40d83ca5d097
strace.c: use _exit() instead of exit() in child's die()

Let's keep child's death routine as minimalistic as possible for the
cases when vfork() is used instead of fork() on systems that lack MMU.

* strace.c (die) <!(strace_tracer_pid == getpid())>: Call _exit().
strace.c