Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | avoid names starting with '_' | Roberto Ierusalimschy | 2005-07-09 | 1 | -7/+7 |
* | small improvement | Roberto Ierusalimschy | 2005-06-03 | 1 | -3/+3 |
* | metatables for all types | Roberto Ierusalimschy | 2005-05-05 | 1 | -1/+2 |
* | added LUAI_FUNC to functions not in the API | Roberto Ierusalimschy | 2005-04-25 | 1 | -3/+3 |
* | small optimizations | Roberto Ierusalimschy | 2005-04-05 | 1 | -1/+2 |
* | better name for GC pause | Roberto Ierusalimschy | 2005-03-22 | 1 | -2/+2 |
* | call limit may be larger than shorts | Roberto Ierusalimschy | 2005-03-18 | 1 | -2/+2 |
* | details | Roberto Ierusalimschy | 2005-02-23 | 1 | -3/+3 |
* | C functions and userdata also have environments | Roberto Ierusalimschy | 2005-02-18 | 1 | -1/+2 |
* | all collected userdata must go to the end of the list of finalizers | Roberto Ierusalimschy | 2005-02-11 | 1 | -2/+2 |
* | cleaner way to remark open upvalues | Roberto Ierusalimschy | 2005-01-18 | 1 | -2/+2 |
* | no more generational collector (and no more `noinc' mode) | Roberto Ierusalimschy | 2005-01-14 | 1 | -5/+4 |
* | change in hash algorithm so that it does not need empty slot | Roberto Ierusalimschy | 2005-01-05 | 1 | -2/+1 |
* | a different option for the GC | Roberto Ierusalimschy | 2004-12-13 | 1 | -2/+2 |
* | more options for controling the GC | Roberto Ierusalimschy | 2004-12-06 | 1 | -1/+3 |
* | cleaner API for coroutines | Roberto Ierusalimschy | 2004-09-15 | 1 | -2/+2 |
* | better control for GC cycles | Roberto Ierusalimschy | 2004-08-30 | 1 | -2/+4 |
* | first implementation of generational GC | Roberto Ierusalimschy | 2004-08-24 | 1 | -3/+4 |
* | new macro `lua_threadyield' + lock stuff in `luaconf.h' + details | Roberto Ierusalimschy | 2004-06-02 | 1 | -34/+3 |
* | new way to use `vararg' parameters (with `...') | Roberto Ierusalimschy | 2004-05-31 | 1 | -4/+5 |
* | small steps towards yields in iterators and tag methods | Roberto Ierusalimschy | 2004-05-14 | 1 | -2/+3 |
* | details | Roberto Ierusalimschy | 2004-03-24 | 1 | -1/+2 |
* | `TObject' renamed to `TValue' + other name changes and better assertions | Roberto Ierusalimschy | 2003-12-10 | 1 | -12/+14 |
* | `grayagain' list | Roberto Ierusalimschy | 2003-12-04 | 1 | -1/+2 |
* | sweep of strings also incremental | Roberto Ierusalimschy | 2003-12-04 | 1 | -1/+2 |
* | two different white flags (to distinguish dead elements from new ones) | Roberto Ierusalimschy | 2003-12-03 | 1 | -1/+2 |
* | single list for all collectible objects, with udata separated at the | Roberto Ierusalimschy | 2003-12-03 | 1 | -4/+3 |
* | default metatable can be NULL | Roberto Ierusalimschy | 2003-12-01 | 1 | -5/+1 |
* | incremental GC phases | Roberto Ierusalimschy | 2003-12-01 | 1 | -3/+6 |
* | towards incremental GC | Roberto Ierusalimschy | 2003-11-18 | 1 | -1/+3 |
* | Lua kernel does not use malloc/free functions. | Roberto Ierusalimschy | 2003-10-02 | 1 | -1/+3 |
* | new way to control `pc' of running functions | Roberto Ierusalimschy | 2003-07-16 | 1 | -16/+4 |
* | Lua does not need all those different types... | Roberto Ierusalimschy | 2003-04-28 | 1 | -2/+2 |
* | no-nonsense debug information about tail calls | Roberto Ierusalimschy | 2003-02-27 | 1 | -1/+2 |
* | simpler interface to hooks + use of `int' to count hooks | Roberto Ierusalimschy | 2002-11-25 | 1 | -3/+3 |
* | comments | Roberto Ierusalimschy | 2002-11-22 | 1 | -5/+5 |
* | separated control over C recursion level | Roberto Ierusalimschy | 2002-11-22 | 1 | -2/+3 |
* | easier way to keep `base' correct | Roberto Ierusalimschy | 2002-11-21 | 1 | -2/+1 |
* | keep L->ci->base in L->base for faster access | Roberto Ierusalimschy | 2002-11-21 | 1 | -1/+2 |
* | details | Roberto Ierusalimschy | 2002-11-18 | 1 | -6/+6 |
* | new representation for hooks (to allow asynchronous calls to sethook) | Roberto Ierusalimschy | 2002-11-18 | 1 | -2/+5 |
* | better control over GCObjects | Roberto Ierusalimschy | 2002-11-13 | 1 | -1/+17 |
* | new API for coroutines | Roberto Ierusalimschy | 2002-11-06 | 1 | -2/+3 |
* | threads now are real Lua objects, subject to garbage collection | Roberto Ierusalimschy | 2002-10-25 | 1 | -11/+20 |
* | only one instance of registry and default metatable per global state | Roberto Ierusalimschy | 2002-10-22 | 1 | -12/+7 |
* | use of different buffers for scanner and concatenation | Roberto Ierusalimschy | 2002-10-08 | 1 | -3/+3 |
* | state's buffer is used only for chars | Roberto Ierusalimschy | 2002-09-19 | 1 | -2/+2 |
* | new structure for collectable objects, sharing a common header | Roberto Ierusalimschy | 2002-08-30 | 1 | -9/+6 |
* | use a linear count for count hook | Roberto Ierusalimschy | 2002-08-12 | 1 | -2/+2 |
* | (much) cleaner way to control function states | Roberto Ierusalimschy | 2002-08-07 | 1 | -2/+14 |