| Commit message (Expand) | Author | Files | Lines |
2010-05-10 | new macro 'resetoldbit' | Roberto Ierusalimschy | 1 | -1/+3 |
2010-05-10 | macros 'lua_number2int' and 'lua_number2uint' for Visual Studio | Roberto Ierusalimschy | 1 | -11/+12 |
2010-05-10 | avoid reserving LUA_RIDX_LAST slots in any table used by reference | Roberto Ierusalimschy | 1 | -15/+9 |
2010-05-10 | corrected definition of 'lua_register' (there is no LUA_ENVIRONINDEX | Roberto Ierusalimschy | 1 | -3/+2 |
2010-05-07 | slightly better definition for 'changenvalue' | Roberto Ierusalimschy | 1 | -3/+2 |
2010-05-07 | 'lua_assert' can be empty when assertions are off | Roberto Ierusalimschy | 1 | -2/+2 |
2010-05-07 | slightly better definition for 'isgray' | Roberto Ierusalimschy | 1 | -2/+3 |
2010-05-07 | avoid 'else assert' (which may result in an empty else) | Roberto Ierusalimschy | 1 | -4/+4 |
2010-05-07 | details (to avoid too long strings in assertions) | Roberto Ierusalimschy | 1 | -4/+4 |
2010-05-07 | bug: incremental sweep was not cleaning old bits (as it stopped in the | Roberto Ierusalimschy | 1 | -28/+28 |
2010-05-07 | stupid bug when calling 'luaC_changemode' (in function lua_gc) | Roberto Ierusalimschy | 1 | -3/+6 |
2010-05-07 | more tests in 'lua_checkmemory' + more information in function | Roberto Ierusalimschy | 1 | -17/+29 |
2010-05-07 | new macro 'isgenerational' + new macro 'isold' + better deffinition | Roberto Ierusalimschy | 1 | -3/+7 |
2010-05-06 | some cleaning in 'sweeplist' (threads do not need to be traversed | Roberto Ierusalimschy | 1 | -28/+29 |
2010-05-06 | comments | Roberto Ierusalimschy | 1 | -18/+9 |
2010-05-06 | more tests in 'lua_checkmemory' | Roberto Ierusalimschy | 1 | -13/+48 |
2010-05-05 | new function 'luaC_changemode' + | Roberto Ierusalimschy | 1 | -13/+42 |
2010-05-05 | new function 'luaC_changemode' | Roberto Ierusalimschy | 2 | -10/+6 |
2010-05-05 | typos in comments | Roberto Ierusalimschy | 3 | -7/+7 |
2010-05-05 | better documentation of GC costs | Roberto Ierusalimschy | 1 | -12/+26 |
2010-05-04 | changes in patch to monitor garbage collection | Roberto Ierusalimschy | 1 | -10/+6 |
2010-05-04 | full GC must run finalizers only after finishing everything else | Roberto Ierusalimschy | 1 | -5/+5 |
2010-05-04 | details (comments) | Roberto Ierusalimschy | 1 | -3/+3 |
2010-05-04 | missing parentheses in declaration | Roberto Ierusalimschy | 1 | -2/+2 |
2010-05-04 | no need to handle '\0' differently from other control chars in | Roberto Ierusalimschy | 1 | -2/+2 |
2010-05-03 | no need of a KGC_FORCED collection kind; it has the same behavior of | Roberto Ierusalimschy | 2 | -9/+7 |
2010-05-03 | no more 'finalize' phase in GC; finalizers are called along the | Roberto Ierusalimschy | 3 | -31/+33 |
2010-05-03 | items in 'tobefnz' are kept black (as before recent change) and changed | Roberto Ierusalimschy | 2 | -9/+15 |
2010-05-03 | invariant must be kept in atomic 'phase' too | Roberto Ierusalimschy | 1 | -9/+9 |
2010-04-30 | "gray lists" only need to be valid when 'keepinvariant' is true | Roberto Ierusalimschy | 2 | -15/+11 |
2010-04-30 | added comment explaining a bit about the invariants of the collector | Roberto Ierusalimschy | 1 | -1/+14 |
2010-04-30 | detail | Roberto Ierusalimschy | 1 | -3/+2 |
2010-04-30 | wrong comment | Roberto Ierusalimschy | 1 | -2/+2 |
2010-04-30 | default PAUSE should be 200 (differences may be corrected in | Roberto Ierusalimschy | 1 | -6/+6 |
2010-04-29 | nasty GC bug: upvalue must be turned white when not keeping invariant, | Roberto Ierusalimschy | 3 | -9/+26 |
2010-04-29 | removed commented-out debugging code | Roberto Ierusalimschy | 1 | -3/+1 |
2010-04-29 | new way to control GC speed | Roberto Ierusalimschy | 2 | -16/+26 |
2010-04-29 | 'luaC_linkupval' embedded into call site | Roberto Ierusalimschy | 1 | -4/+10 |
2010-04-29 | improved 'lua_checkmemory', with better control over gray objects | Roberto Ierusalimschy | 1 | -24/+45 |
2010-04-29 | 'luaC_linkupval' moved into 'lfunc.c' code + new way to control GC speed | Roberto Ierusalimschy | 2 | -80/+80 |
2010-04-29 | new way to control GC speed (keeping a 'debt' counter) | Roberto Ierusalimschy | 3 | -10/+11 |
2010-04-26 | lots of new comments + small changes in loop controls + other small | Roberto Ierusalimschy | 1 | -117/+161 |
2010-04-20 | "to-be-finalized" objects marked and sweeped like all other objects | Roberto Ierusalimschy | 1 | -13/+13 |
2010-04-20 | upvalue barriers for Lua functions must act on the upvalue itself, | Roberto Ierusalimschy | 1 | -6/+10 |
2010-04-19 | missing parentheses around 'luaL_pushresultsize' declaration | Roberto Ierusalimschy | 1 | -2/+2 |
2010-04-19 | bug with io.read(op, "*n") | Roberto Ierusalimschy | 1 | -4/+14 |
2010-04-19 | allows thread switches (when/if there are thread switches) in the same | Roberto Ierusalimschy | 1 | -5/+7 |
2010-04-19 | ensure that 'luai_userstatethread' is always called (even if | Roberto Ierusalimschy | 3 | -11/+12 |
2010-04-19 | 'gcinfo' was deprecated in version 5.0. | Roberto Ierusalimschy | 1 | -8/+1 |
2010-04-19 | 'string.format' may get buffer as an argument when there are | Roberto Ierusalimschy | 1 | -2/+14 |