| Commit message (Expand) | Author | Age | Files | Lines |
* | tighter tests for stack overflow | Roberto Ierusalimschy | 2004-09-08 | 1 | -2/+2 |
* | better control for GC cycles | Roberto Ierusalimschy | 2004-08-30 | 1 | -6/+8 |
* | first implementation of generational GC | Roberto Ierusalimschy | 2004-08-24 | 1 | -4/+6 |
* | new coroutines inherit hook from creator | Roberto Ierusalimschy | 2004-06-17 | 1 | -1/+5 |
* | optional error for accesss to undefined variables/fields | Roberto Ierusalimschy | 2004-06-17 | 1 | -1/+2 |
* | details | Roberto Ierusalimschy | 2004-06-02 | 1 | -2/+3 |
* | new way to use `vararg' parameters (with `...') | Roberto Ierusalimschy | 2004-05-31 | 1 | -1/+2 |
* | new scheme for configuration through `luaconf.h' | Roberto Ierusalimschy | 2004-04-30 | 1 | -1/+2 |
* | detail | Roberto Ierusalimschy | 2004-03-23 | 1 | -1/+2 |
* | better way to control open upvalues | Roberto Ierusalimschy | 2004-03-15 | 1 | -13/+14 |
* | more and better tools (assertions & inspectors) to check incremental GC | Roberto Ierusalimschy | 2004-02-16 | 1 | -2/+2 |
* | atomic operations are not GC "states" | Roberto Ierusalimschy | 2003-12-12 | 1 | -2/+2 |
* | `TObject' renamed to `TValue' + other name changes and better assertions | Roberto Ierusalimschy | 2003-12-10 | 1 | -9/+10 |
* | `grayagain' list | Roberto Ierusalimschy | 2003-12-04 | 1 | -1/+2 |
* | sweep of strings also incremental | Roberto Ierusalimschy | 2003-12-04 | 1 | -1/+3 |
* | 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 | -3/+8 |
* | default metatable can be NULL | Roberto Ierusalimschy | 2003-12-01 | 1 | -6/+1 |
* | incremental GC phases | Roberto Ierusalimschy | 2003-12-01 | 1 | -2/+3 |
* | 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 | -29/+22 |
* | main thread and global state are allocated in a single block | Roberto Ierusalimschy | 2003-09-04 | 1 | -52/+53 |
* | we do not need a default panic (that does nothing anyway...) | Roberto Ierusalimschy | 2003-07-16 | 1 | -11/+2 |
* | new way to control `pc' of running functions | Roberto Ierusalimschy | 2003-07-16 | 1 | -3/+3 |
* | warnings from several compilers (mainly typecasts when lua_Number is float) | Roberto Ierusalimschy | 2003-04-03 | 1 | -2/+2 |
* | name changes to avoid name collision between macros and variables | Roberto Ierusalimschy | 2003-03-18 | 1 | -3/+3 |
* | bug: GC metamethod calls could mess C/Lua stack syncronization | Roberto Ierusalimschy | 2003-02-28 | 1 | -3/+8 |
* | `defaultmeta' is always empty, but registry needs some space for | Roberto Ierusalimschy | 2003-02-13 | 1 | -3/+3 |
* | resist errors in finalizers during lua_close | Roberto Ierusalimschy | 2003-02-10 | 1 | -2/+10 |
* | details | Roberto Ierusalimschy | 2002-12-19 | 1 | -1/+3 |
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+5 |
* | separated control over C recursion level | Roberto Ierusalimschy | 2002-11-22 | 1 | -1/+2 |
* | keep L->ci->base in L->base for faster access | Roberto Ierusalimschy | 2002-11-21 | 1 | -2/+2 |
* | global_State must be deallocated (and so allocated) with NULL also | Roberto Ierusalimschy | 2002-11-21 | 1 | -3/+4 |
* | better organization of "malloc responsabilities" | Roberto Ierusalimschy | 2002-11-19 | 1 | -53/+66 |
* | new representation for hooks (to allow asynchronous calls to sethook) | Roberto Ierusalimschy | 2002-11-18 | 1 | -3/+4 |
* | documentation for write barriers | Roberto Ierusalimschy | 2002-11-14 | 1 | -2/+2 |
* | better control over GCObjects | Roberto Ierusalimschy | 2002-11-13 | 1 | -2/+3 |
* | C needs "union" (unlike C++) | Roberto Ierusalimschy | 2002-10-25 | 1 | -2/+2 |
* | threads now are real Lua objects, subject to garbage collection | Roberto Ierusalimschy | 2002-10-25 | 1 | -51/+52 |
* | only one instance of registry and default metatable per global state | Roberto Ierusalimschy | 2002-10-22 | 1 | -6/+4 |
* | use of different buffers for scanner and concatenation | Roberto Ierusalimschy | 2002-10-08 | 1 | -4/+3 |
* | new structure for collectable objects, sharing a common header | Roberto Ierusalimschy | 2002-08-30 | 1 | -10/+4 |
* | names... | Roberto Ierusalimschy | 2002-08-16 | 1 | -2/+2 |
* | (much) cleaner way to control function states | Roberto Ierusalimschy | 2002-08-07 | 1 | -2/+2 |
* | new (old?) error handling scheme | Roberto Ierusalimschy | 2002-08-06 | 1 | -6/+2 |
* | small bug: basic `ci' must have a valid func (base - 1) | Roberto Ierusalimschy | 2002-08-05 | 1 | -1/+2 |
* | new implementation for error handling | Roberto Ierusalimschy | 2002-08-05 | 1 | -8/+15 |
* | CallInfo has different fields for C functions and Lua functions | Roberto Ierusalimschy | 2002-07-16 | 1 | -2/+2 |
* | new interface for debug hooks | Roberto Ierusalimschy | 2002-07-08 | 1 | -4/+5 |