From df0e39281e8fc368208127c67f0fa2f0dcbcca20 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Sat, 21 May 2005 21:40:14 +0000 Subject: Enable new FINI processing. ldso now passes a FINI function ptr to crt. Only PowerPC and x86 support this currently. --- libc/stdlib/atexit.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libc') diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c index d5f83ee8e..87a49a015 100644 --- a/libc/stdlib/atexit.c +++ b/libc/stdlib/atexit.c @@ -239,11 +239,8 @@ void exit(int rv) if (__app_fini != NULL) (__app_fini)(); #endif -#ifdef _DL_DO_FINI_IN_LIBC -/* arches that has moved their ldso FINI handling should #define _DL_DO_FINI_IN_LIBC */ if (__rtld_fini != NULL) (__rtld_fini)(); -#endif /* If we are using stdio, try to shut it down. At the very least, * this will attempt to commit all buffered writes. It may also -- cgit v1.2.3