123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*
- ** $Id: llimits.h,v 1.61 2004/11/24 18:55:56 roberto Exp roberto $
- ** Limits, basic types, and some other `installation-dependent' definitions
- ** See Copyright Notice in lua.h
- */
- #ifndef llimits_h
- #define llimits_h
- #include <limits.h>
- #include <stddef.h>
- #include "lua.h"
- typedef LUA_UINT32 lu_int32;
- typedef LU_MEM lu_mem;
- typedef L_MEM l_mem;
- /* chars used as small naturals (so that `char' is reserved for characters) */
- typedef unsigned char lu_byte;
- #define MAX_SIZET ((size_t)(~(size_t)0)-2)
- #define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
- #define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
- /*
- ** conversion of pointer to integer
- ** this is for hashing only; there is no problem if the integer
- ** cannot hold the whole pointer value
- */
- #define IntPoint(p) ((unsigned int)(lu_mem)(p))
- /* type to ensure maximum alignment */
- typedef LUSER_ALIGNMENT_T L_Umaxalign;
- /* result of a `usual argument conversion' over lua_Number */
- typedef LUA_UACNUMBER l_uacNumber;
- #define check_exp(c,e) (lua_assert(c), (e))
- #ifndef UNUSED
- #define UNUSED(x) ((void)(x)) /* to avoid warnings */
- #endif
- #ifndef cast
- #define cast(t, exp) ((t)(exp))
- #endif
- /*
- ** type for virtual-machine instructions
- ** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h)
- */
- typedef lu_int32 Instruction;
- /* divisor for GC pace */
- #define GCDIV 8
- /* maximum stack for a Lua function */
- #define MAXSTACK 250
- /* minimum size for the string table (must be power of 2) */
- #ifndef MINSTRTABSIZE
- #define MINSTRTABSIZE 32
- #endif
- /* minimum size for string buffer */
- #ifndef LUA_MINBUFFER
- #define LUA_MINBUFFER 32
- #endif
- #endif
|