From 06fac9f50335a5669672c4ac9ca93e5f43288822 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sat, 27 Jan 2018 22:00:23 +0100 Subject: [PATCH] hurd: fix warning * sysdeps/mach/hurd/dl-sysdep.c (_exit): Call LOSE and abort() if __task_terminate would ever return successfully. --- ChangeLog | 2 ++ sysdeps/mach/hurd/dl-sysdep.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9582d8cfed6..5dd9e9fcb64 100644 --- a/ChangeLog +++ b/ChangeLog @@ -27,6 +27,8 @@ * mach/mach/mach_traps.h: Drop comment about MACH_IPC_COMPAT. * sysdeps/mach/hurd/fork.c (__fork): Drop special casing MACH_IPC_COMPAT. + * sysdeps/mach/hurd/dl-sysdep.c (_exit): Call LOSE and abort() if + __task_terminate would ever return successfully. 2018-01-27 James Clarke diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index 2cd63bb83a4..ef96df054e7 100644 --- a/sysdeps/mach/hurd/dl-sysdep.c +++ b/sysdeps/mach/hurd/dl-sysdep.c @@ -643,6 +643,9 @@ _exit (int status) W_EXITCODE (status, 0), 0); while (__task_terminate (__mach_task_self ())) __mach_task_self_ = (__mach_task_self) (); + + LOSE; + abort (); } /* We need this alias to satisfy references from libc_pic.a objects that were affected by the libc_hidden_proto declaration for _exit. */ -- 2.47.2