summaryrefslogtreecommitdiff
path: root/pl
diff options
context:
space:
mode:
authorHenry Stiles <henry.stiles@artifex.com>2009-03-26 21:16:45 +0000
committerHenry Stiles <henry.stiles@artifex.com>2009-03-26 21:16:45 +0000
commit316ede872f8fb0087d04fcd4d3581d756b021f97 (patch)
tree35f2cb14e3e6edc9a1a1cf35b293ce8d9f13218e /pl
parent4a97ae724509a8864b7749f6a79847df64f7e7f5 (diff)
Remove allocator debugging code as this scheme will not work with
forthcoming changes to setup nogc.dev properly. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@9598 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'pl')
-rw-r--r--pl/plalloc.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/pl/plalloc.c b/pl/plalloc.c
index e2848ad74..794145ab5 100644
--- a/pl/plalloc.c
+++ b/pl/plalloc.c
@@ -19,14 +19,9 @@ pl_alloc_init()
if (mem == NULL) return NULL;
-#ifndef DEBUG
/* fix me... the second parameter (chunk size) should be a member of
pl_main_instance_t */
pl_mem = (gs_memory_t *)ialloc_alloc_state(mem, 20000);
-#else
- pl_mem = gs_malloc_init(mem);
-#endif
-
/* if ialloc fails we return NULL here */
return pl_mem;
}