summaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index 4401c95e..361fdbce 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.73 2009/07/15 17:26:14 roberto Exp roberto $ 2** $Id: llimits.h,v 1.74 2009/08/31 14:26:28 roberto Exp roberto $
3** Limits, basic types, and some other `installation-dependent' definitions 3** Limits, basic types, and some other `installation-dependent' definitions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -128,4 +128,10 @@ typedef lu_int32 Instruction;
128#define condmovestack(L) luaD_reallocstack((L), (L)->stacksize) 128#define condmovestack(L) luaD_reallocstack((L), (L)->stacksize)
129#endif 129#endif
130 130
131#if !defined(HARDMEMTESTS)
132#define condchangemem(L) condmovestack(L)
133#else
134#define condchangemem(L) luaC_fullgc(L, 0)
135#endif
136
131#endif 137#endif