From 225e2431c50a94b1ead3fa362b7c37b1f4df2149 Mon Sep 17 00:00:00 2001 From: fedor Date: Wed, 21 May 2003 19:14:00 +0000 Subject: [PATCH] Remove GSAtExit git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16761 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 2 ++ Source/NSObject.m | 12 ------------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6bb9570b8..0b49e66f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,8 @@ * Version 1.7.0. * Documentation/news.texi: Updated. + * NSObject: Revert last change + 2003-05-20 David Ayers * Headers/gnustep/base/GSObjCRuntime.h (GSObjCGetMethod(), diff --git a/Source/NSObject.m b/Source/NSObject.m index f7ea4efb2..9db99af47 100644 --- a/Source/NSObject.m +++ b/Source/NSObject.m @@ -57,16 +57,6 @@ extern BOOL __objc_responds_to(id, SEL); #endif -static void -GSAtExit(void) -{ - int s = 0; - - /* Re-set ALL signals before we exit */ - for (s = 0; s < NSIG; s++) - signal(s, SIG_DFL); -} - #if GS_WITH_GC #include @@ -803,8 +793,6 @@ static BOOL double_release_check_enabled = NO; GSSetLocaleC(LC_ALL, ""); // Set up locale from environment. #endif - atexit(GSAtExit); - // Create the global lock gnustep_global_lock = [NSRecursiveLock new];