From e9af4dfbd328e9f3bba235fdb2d1027dd2dbbcde Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sun, 20 Mar 2011 02:38:48 +0100 Subject: fix a bunch of build warnings Added attribute_noreturn even if it has return at the end of function Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/inet/resolv.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libc') diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c index b4246d377..692991f94 100644 --- a/libc/inet/resolv.c +++ b/libc/inet/resolv.c @@ -3532,7 +3532,7 @@ __res_vinit(res_state rp, int preinit) return 0; } -static void +static void attribute_noreturn __res_iclose(void) { __UCLIBC_MUTEX_LOCK(__resolv_lock); @@ -3551,7 +3551,9 @@ __res_iclose(void) } #endif memset(&_res, 0, sizeof(_res)); - __UCLIBC_MUTEX_UNLOCK(__resolv_lock); + /* the loop is only to make gcc happy */ + while(1) + __UCLIBC_MUTEX_UNLOCK(__resolv_lock); } /* -- cgit v1.2.3