more options moved from luaconf.h into internal files

This commit is contained in:
Roberto Ierusalimschy
2009-12-17 10:50:20 -02:00
parent e0f9d1c8f5
commit 46f1429936
3 changed files with 53 additions and 36 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: llimits.h,v 1.75 2009/11/17 11:56:03 roberto Exp roberto $
** $Id: llimits.h,v 1.76 2009/12/17 12:26:09 roberto Exp roberto $
** Limits, basic types, and some other `installation-dependent' definitions
** See Copyright Notice in lua.h
*/
@@ -133,6 +133,38 @@ typedef lu_int32 Instruction;
#endif
/*
** these macros allow user-specific actions on threads when you defined
** LUAI_EXTRASPACE and need to do something extra when a thread is
** created/deleted/resumed/yielded.
*/
#if !defined(luai_userstateopen)
#define luai_userstateopen(L) ((void)L)
#endif
#if !defined(luai_userstateclose)
#define luai_userstateclose(L) ((void)L)
#endif
#if !defined(luai_userstatethread)
#define luai_userstatethread(L,L1) ((void)L)
#endif
#if !defined(luai_userstatefree)
#define luai_userstatefree(L) ((void)L)
#endif
#if !defined(luai_userstateresume)
#define luai_userstateresume(L,n) ((void)L)
#endif
#if !defined(luai_userstateyield)
#define luai_userstateyield(L,n) ((void)L)
#endif
/*
** macro to control inclusion of some hard tests on stack reallocation
*/