From 949e4d42cf3759ce0ba14e3663753be8948d0fb6 Mon Sep 17 00:00:00 2001 From: lethosor Date: Sat, 29 Aug 2015 19:42:32 -0400 Subject: [PATCH] Remove MacPool.* --- library/MacPool.h | 12 ------------ library/MacPool.mm | 22 ---------------------- 2 files changed, 34 deletions(-) delete mode 100644 library/MacPool.h delete mode 100644 library/MacPool.mm diff --git a/library/MacPool.h b/library/MacPool.h deleted file mode 100644 index f3b5dbebb..000000000 --- a/library/MacPool.h +++ /dev/null @@ -1,12 +0,0 @@ -/* - * MacPool.h - * Handles creation and destruction of autorelease pool for DFHack on the Mac - */ - -#ifndef MACPOOL_H -#define MACPOOL_H - -int create_pool(); -int destroy_pool(); - -#endif \ No newline at end of file diff --git a/library/MacPool.mm b/library/MacPool.mm deleted file mode 100644 index 8f26543e9..000000000 --- a/library/MacPool.mm +++ /dev/null @@ -1,22 +0,0 @@ -/* - * MacPool.m - * - */ - -#import -#import "MacPool.h" - -NSAutoreleasePool *thePool; - -int create_pool() { - fprintf(stderr,"Creating autorelease pool\n"); - thePool = [[NSAutoreleasePool alloc] init]; - return 1; -} - -int destroy_pool() { - fprintf(stderr,"Draining and releasing autorelease pool\n"); - [thePool drain]; - [thePool release]; - return 0; -} \ No newline at end of file