summaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.h b/lgc.h
index b0520f36..bf7d7c4c 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.48 2010/12/20 18:17:46 roberto Exp roberto $ 2** $Id: lgc.h,v 2.49 2010/12/29 18:00:23 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -106,7 +106,7 @@
106 106
107#define luaC_condGC(L,c) \ 107#define luaC_condGC(L,c) \
108 {if (G(L)->GCdebt > 0) {c;}; condchangemem(L);} 108 {if (G(L)->GCdebt > 0) {c;}; condchangemem(L);}
109#define luaC_checkGC(L) luaC_condGC(L, luaC_step(L);) 109#define luaC_checkGC(L) luaC_condGC(L, luaC_step(L);)
110 110
111 111
112#define luaC_barrier(L,p,v) { if (valiswhite(v) && isblack(obj2gco(p))) \ 112#define luaC_barrier(L,p,v) { if (valiswhite(v) && isblack(obj2gco(p))) \