index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
one more macro (mvdispatch) to easy experiments with alternative
Roberto Ierusalimschy
2010-05-13
1
-2
/
+3
*
detail (breaking a long line)
Roberto Ierusalimschy
2010-05-13
1
-4
/
+5
*
use of macro ('vmcase') to format all cases in main switch of
Roberto Ierusalimschy
2010-05-12
1
-121
/
+83
*
small changes in 'luaV_execute' to make cases more regularly formatted
Roberto Ierusalimschy
2010-05-12
1
-8
/
+7
*
added comments to '#else' and '#endif' in long conditionals
Roberto Ierusalimschy
2010-05-12
1
-13
/
+14
*
new API function 'lua_absindex'
Roberto Ierusalimschy
2010-05-12
3
-13
/
+19
*
avoid "strong" cast
Roberto Ierusalimschy
2010-05-11
1
-2
/
+3
*
wrong type being assigned (not detected because of obj2gco macro)
Roberto Ierusalimschy
2010-05-11
1
-2
/
+2
*
udata in 'tobefnz' list be have old bit on (it will be cleared
Roberto Ierusalimschy
2010-05-10
1
-2
/
+1
*
corrected some places where an old object could end up in front
Roberto Ierusalimschy
2010-05-10
4
-10
/
+15
*
new macro 'resetoldbit'
Roberto Ierusalimschy
2010-05-10
2
-7
/
+9
*
macros 'lua_number2int' and 'lua_number2uint' for Visual Studio
Roberto Ierusalimschy
2010-05-10
1
-11
/
+12
*
avoid reserving LUA_RIDX_LAST slots in any table used by reference
Roberto Ierusalimschy
2010-05-10
1
-15
/
+9
*
corrected definition of 'lua_register' (there is no LUA_ENVIRONINDEX
Roberto Ierusalimschy
2010-05-10
1
-3
/
+2
*
slightly better definition for 'changenvalue'
Roberto Ierusalimschy
2010-05-07
1
-3
/
+2
*
'lua_assert' can be empty when assertions are off
Roberto Ierusalimschy
2010-05-07
1
-2
/
+2
*
slightly better definition for 'isgray'
Roberto Ierusalimschy
2010-05-07
1
-2
/
+3
*
avoid 'else assert' (which may result in an empty else)
Roberto Ierusalimschy
2010-05-07
1
-4
/
+4
*
details (to avoid too long strings in assertions)
Roberto Ierusalimschy
2010-05-07
1
-4
/
+4
*
bug: incremental sweep was not cleaning old bits (as it stopped in the
Roberto Ierusalimschy
2010-05-07
1
-28
/
+28
*
stupid bug when calling 'luaC_changemode' (in function lua_gc)
Roberto Ierusalimschy
2010-05-07
1
-3
/
+6
*
more tests in 'lua_checkmemory' + more information in function
Roberto Ierusalimschy
2010-05-07
1
-17
/
+29
*
new macro 'isgenerational' + new macro 'isold' + better deffinition
Roberto Ierusalimschy
2010-05-07
1
-3
/
+7
*
some cleaning in 'sweeplist' (threads do not need to be traversed
Roberto Ierusalimschy
2010-05-06
1
-28
/
+29
*
comments
Roberto Ierusalimschy
2010-05-06
1
-18
/
+9
*
more tests in 'lua_checkmemory'
Roberto Ierusalimschy
2010-05-06
1
-13
/
+48
*
new function 'luaC_changemode' +
Roberto Ierusalimschy
2010-05-05
1
-13
/
+42
*
new function 'luaC_changemode'
Roberto Ierusalimschy
2010-05-05
2
-10
/
+6
*
typos in comments
Roberto Ierusalimschy
2010-05-05
3
-7
/
+7
*
better documentation of GC costs
Roberto Ierusalimschy
2010-05-05
1
-12
/
+26
*
changes in patch to monitor garbage collection
Roberto Ierusalimschy
2010-05-04
1
-10
/
+6
*
full GC must run finalizers only after finishing everything else
Roberto Ierusalimschy
2010-05-04
1
-5
/
+5
*
details (comments)
Roberto Ierusalimschy
2010-05-04
1
-3
/
+3
*
missing parentheses in declaration
Roberto Ierusalimschy
2010-05-04
1
-2
/
+2
*
no need to handle '\0' differently from other control chars in
Roberto Ierusalimschy
2010-05-04
1
-2
/
+2
*
no need of a KGC_FORCED collection kind; it has the same behavior of
Roberto Ierusalimschy
2010-05-03
2
-9
/
+7
*
no more 'finalize' phase in GC; finalizers are called along the
Roberto Ierusalimschy
2010-05-03
3
-31
/
+33
*
items in 'tobefnz' are kept black (as before recent change) and changed
Roberto Ierusalimschy
2010-05-03
2
-9
/
+15
*
invariant must be kept in atomic 'phase' too
Roberto Ierusalimschy
2010-05-03
1
-9
/
+9
*
"gray lists" only need to be valid when 'keepinvariant' is true
Roberto Ierusalimschy
2010-04-30
2
-15
/
+11
*
added comment explaining a bit about the invariants of the collector
Roberto Ierusalimschy
2010-04-30
1
-1
/
+14
*
detail
Roberto Ierusalimschy
2010-04-30
1
-3
/
+2
*
wrong comment
Roberto Ierusalimschy
2010-04-30
1
-2
/
+2
*
default PAUSE should be 200 (differences may be corrected in
Roberto Ierusalimschy
2010-04-30
1
-6
/
+6
*
nasty GC bug: upvalue must be turned white when not keeping invariant,
Roberto Ierusalimschy
2010-04-29
3
-9
/
+26
*
removed commented-out debugging code
Roberto Ierusalimschy
2010-04-29
1
-3
/
+1
*
new way to control GC speed
Roberto Ierusalimschy
2010-04-29
2
-16
/
+26
*
'luaC_linkupval' embedded into call site
Roberto Ierusalimschy
2010-04-29
1
-4
/
+10
*
improved 'lua_checkmemory', with better control over gray objects
Roberto Ierusalimschy
2010-04-29
1
-24
/
+45
*
'luaC_linkupval' moved into 'lfunc.c' code + new way to control GC speed
Roberto Ierusalimschy
2010-04-29
2
-80
/
+80
[prev]
[next]