From 6374ca896086574af61eb37ef371e3371b10bb5c Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 23 Dec 2008 06:50:20 +0000 Subject: Get i386 non nptl builds going. --- libc/sysdeps/linux/common/_exit.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'libc/sysdeps/linux/common/_exit.c') diff --git a/libc/sysdeps/linux/common/_exit.c b/libc/sysdeps/linux/common/_exit.c index a0b891d25..518a6d2e8 100644 --- a/libc/sysdeps/linux/common/_exit.c +++ b/libc/sysdeps/linux/common/_exit.c @@ -12,9 +12,6 @@ #include #include #include -#ifdef __UCLIBC_HAS_THREADS__ -#include -#endif /* libc_hidden_proto(_exit) */ @@ -28,13 +25,6 @@ void attribute_noreturn _exit(int status) { /* The loop is added only to keep gcc happy. */ while(1) - { -#ifdef __UCLIBC_HAS_THREADS_NATIVE__ -# ifdef __NR_exit_group - INLINE_SYSCALL(exit_group, 1, status); -# endif -#endif INLINE_SYSCALL(exit, 1, status); - } } libc_hidden_def(_exit) -- cgit v1.2.3