| Commit message (Expand) | Author | Files | Lines |
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 |
2010-04-19 | complete control over number of each kind of object allocated | Roberto Ierusalimschy | 1 | -46/+53 |
2010-04-19 | with light C functions, 'pairs' does not need to keep 'next' as an | Roberto Ierusalimschy | 1 | -18/+8 |
2010-04-19 | tells the allocation function that the first block is a thread | Roberto Ierusalimschy | 1 | -2/+2 |
2010-04-19 | in lua_gc/step, 'luaC_step' changes GCthreshold, so there was little | Roberto Ierusalimschy | 1 | -4/+2 |
2010-04-18 | "light C function" is a better name than "C-function pointer" | Roberto Ierusalimschy | 6 | -19/+19 |
2010-04-18 | comparsion tag methods follow the same rule as other binary TMs | Roberto Ierusalimschy | 1 | -20/+12 |
2010-04-18 | macro LUA_USE_LONGJMP allows choosing longjmp when compiling Lua as | Roberto Ierusalimschy | 1 | -2/+2 |
2010-04-17 | better line numbers for function calls and unary/binary operators + | Roberto Ierusalimschy | 3 | -20/+27 |
2010-04-16 | 'gcstate' now also runs collector until given state + small changes | Roberto Ierusalimschy | 1 | -21/+22 |
2010-04-16 | new escape sequence '\*' + several comments + moving options from | Roberto Ierusalimschy | 1 | -42/+62 |
2010-04-15 | no need to avoid calling ctype functions as now they are implemented | Roberto Ierusalimschy | 1 | -4/+2 |
2010-04-15 | invalid instructions "cannot" happen | Roberto Ierusalimschy | 1 | -3/+2 |
2010-04-14 | no more 'ccall' nor 'cpcall' functions. (With light C functions they | Roberto Ierusalimschy | 5 | -40/+8 |
2010-04-14 | first implementation of light C functions | Roberto Ierusalimschy | 11 | -88/+141 |
2010-04-12 | BUG: 'string.format' may get buffer when there are missing arguments | Roberto Ierusalimschy | 1 | -4/+15 |
2010-04-12 | better control in 'totalmem' over choosing counters | Roberto Ierusalimschy | 1 | -8/+18 |
2010-04-12 | new macro LUA_NUMTAGS | Roberto Ierusalimschy | 6 | -19/+15 |
2010-04-12 | check memory allows strings to live in the main GC list (it should | Roberto Ierusalimschy | 1 | -1/+2 |
2010-04-12 | patterns now accept '\0' as a regular character | Roberto Ierusalimschy | 1 | -28/+38 |
2010-04-09 | new implementation for Generic Buffer manipulation (using userdata as | Roberto Ierusalimschy | 3 | -103/+93 |
2010-04-08 | keep memory-error message in the global state, so that its use | Roberto Ierusalimschy | 4 | -9/+13 |
2010-04-08 | macro 'eqstr' was being used to compare non-string entities | Roberto Ierusalimschy | 1 | -2/+2 |
2010-04-05 | no need to keep "_ENV" name in global state (can be kept in lex state) | Roberto Ierusalimschy | 5 | -12/+12 |
2010-04-05 | new macro 'eqstr' | Roberto Ierusalimschy | 6 | -14/+25 |