aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index e95c7288..635f41d2 100644
--- a/lstate.h
+++ b/lstate.h
@@ -235,8 +235,10 @@ struct CallInfo {
235#define CIST_FRESH cast(l_uint32, CIST_C << 1) 235#define CIST_FRESH cast(l_uint32, CIST_C << 1)
236/* function is closing tbc variables */ 236/* function is closing tbc variables */
237#define CIST_CLSRET (CIST_FRESH << 1) 237#define CIST_CLSRET (CIST_FRESH << 1)
238/* function has tbc variables to close */
239#define CIST_TBC (CIST_CLSRET << 1)
238/* original value of 'allowhook' */ 240/* original value of 'allowhook' */
239#define CIST_OAH (CIST_CLSRET << 1) 241#define CIST_OAH (CIST_TBC << 1)
240/* call is running a debug hook */ 242/* call is running a debug hook */
241#define CIST_HOOKED (CIST_OAH << 1) 243#define CIST_HOOKED (CIST_OAH << 1)
242/* doing a yieldable protected call */ 244/* doing a yieldable protected call */