This commit is contained in:
Roberto Ierusalimschy 2003-04-28 16:57:50 -03:00
parent 572a69df78
commit b1b752fb2b

View File

@ -1,5 +1,5 @@
/* /*
** $Id: llimits.h,v 1.52 2003/02/20 19:33:23 roberto Exp roberto $ ** $Id: llimits.h,v 1.53 2003/04/28 19:26:16 roberto Exp roberto $
** Limits, basic types, and some other `installation-dependent' definitions ** Limits, basic types, and some other `installation-dependent' definitions
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -57,8 +57,6 @@ typedef LUA_UINT32 lu_int32;
*/ */
typedef lu_int32 lu_mem; typedef lu_int32 lu_mem;
#define MAX_LUMEM ULONG_MAX
/* chars used as small naturals (so that `char' is reserved for characters) */ /* chars used as small naturals (so that `char' is reserved for characters) */
typedef unsigned char lu_byte; typedef unsigned char lu_byte;
@ -138,7 +136,7 @@ typedef lu_int32 Instruction;
#endif #endif
/* maximum size for the C stack */ /* maximum size for the virtual stack of a C function */
#ifndef LUA_MAXCSTACK #ifndef LUA_MAXCSTACK
#define LUA_MAXCSTACK 2048 #define LUA_MAXCSTACK 2048
#endif #endif
@ -150,19 +148,19 @@ typedef lu_int32 Instruction;
/* maximum number of variables declared in a function */ /* maximum number of variables declared in a function */
#ifndef MAXVARS #ifndef MAXVARS
#define MAXVARS 200 /* arbitrary limit (<MAXSTACK) */ #define MAXVARS 200 /* <MAXSTACK */
#endif #endif
/* maximum number of upvalues per function */ /* maximum number of upvalues per function */
#ifndef MAXUPVALUES #ifndef MAXUPVALUES
#define MAXUPVALUES 32 #define MAXUPVALUES 32 /* <MAXSTACK */
#endif #endif
/* maximum number of parameters in a function */ /* maximum number of parameters in a function */
#ifndef MAXPARAMS #ifndef MAXPARAMS
#define MAXPARAMS 100 /* arbitrary limit (<MAXLOCALS) */ #define MAXPARAMS 100 /* <MAXLOCALS */
#endif #endif