From 590e1c95e907bca0535b75fe23576aba9ca494a2 Mon Sep 17 00:00:00 2001 From: Samium Gromoff <_deepfire@feelingofgreen.ru> Date: Mon, 20 Apr 2009 20:36:29 +0400 Subject: [PATCH] Use the unprotected allocation. --- src/c/main.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/main.d b/src/c/main.d index 70bcda06c..0b1331c57 100644 --- a/src/c/main.d +++ b/src/c/main.d @@ -298,7 +298,7 @@ _ecl_alloc_env() /* We have not set up any environment. Hence, we cannot call ecl_alloc() * because it will need to stop interrupts and currently we rely on * the environment for that */ - output = GC_MALLOC_IGNORE_OFF_PAGE(sizeof(*output)); + output = ecl_alloc_unprotected(sizeof(*output)); } else { output = ecl_alloc(sizeof(*output)); }