aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/luaconf.h b/luaconf.h
index e623e314..8a57dddd 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luaconf.h,v 1.59 2005/08/15 14:12:32 roberto Exp roberto $ 2** $Id: luaconf.h,v 1.60 2005/08/17 18:32:09 roberto Exp roberto $
3** Configuration file for Lua 3** Configuration file for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -670,11 +670,15 @@ union luai_Cast { double l_d; long l_l; };
670 670
671 671
672/* 672/*
673@@ luai_userstateopen allows user-specific initialization on new threads. 673@@ luai_userstate* allow user-specific actions on threads.
674** CHANGE it if you defined LUAI_EXTRASPACE and need to initialize that 674** CHANGE them if you defined LUAI_EXTRASPACE and need to do something
675** data whenever a new lua_State is created. 675** extra when a thread is created/deleted/resumed/yielded.
676*/ 676*/
677#define luai_userstateopen(L) ((void)0) 677#define luai_userstateopen(L) ((void)0)
678#define luai_userstatefree(L) ((void)0)
679#define luai_userstateresume(L,n) ((void)0)
680#define luai_userstateyield(L,n) ((void)0)
681
678 682
679 683
680 684