summaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/llimits.h b/llimits.h
index 3f8f8139..22cfe305 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.37 2002/02/14 21:43:01 roberto Exp roberto $ 2** $Id: llimits.h,v 1.38 2002/03/05 16:22:54 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*/
@@ -86,6 +86,12 @@ union L_Umaxalign { LUSER_ALIGNMENT_T u; void *s; long l; };
86typedef unsigned long Instruction; 86typedef unsigned long Instruction;
87 87
88 88
89/* maximum size for the Lua stack */
90#ifndef LUA_MAXSTACK
91#define LUA_MAXSTACK 14000
92#endif
93
94
89/* maximum stack for a Lua function */ 95/* maximum stack for a Lua function */
90#define MAXSTACK 250 96#define MAXSTACK 250
91 97
@@ -108,9 +114,9 @@ typedef unsigned long Instruction;
108#endif 114#endif
109 115
110 116
111/* minimum size for the string table */ 117/* minimum size for the string table (must be power of 2) */
112#ifndef MINSTRTABSIZE 118#ifndef MINSTRTABSIZE
113#define MINSTRTABSIZE 20 119#define MINSTRTABSIZE 32
114#endif 120#endif
115 121
116 122