Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | better control for GC running or stopped | Roberto Ierusalimschy | 2010-12-20 | 1 | -2/+3 | |
| | ||||||
* | finalizers (__gc) for tables | Roberto Ierusalimschy | 2010-11-26 | 1 | -2/+2 | |
| | ||||||
* | new parameter 'majorinc' to control frequency of major collections | Roberto Ierusalimschy | 2010-09-03 | 1 | -1/+6 | |
| | | | | in generational mode | |||||
* | detail | Roberto Ierusalimschy | 2010-04-30 | 1 | -3/+2 | |
| | ||||||
* | default PAUSE should be 200 (differences may be corrected in | Roberto Ierusalimschy | 2010-04-30 | 1 | -6/+6 | |
| | | | | | internal multiplers) + check for unbilt stack equal the one used by lgc.c | |||||
* | new way to control GC speed | Roberto Ierusalimschy | 2010-04-29 | 1 | -12/+19 | |
| | ||||||
* | ensure that 'luai_userstatethread' is always called (even if | Roberto Ierusalimschy | 2010-04-19 | 1 | -5/+4 | |
| | | | | 'stack_init' throws a memory error) | |||||
* | tells the allocation function that the first block is a thread | Roberto Ierusalimschy | 2010-04-19 | 1 | -2/+2 | |
| | ||||||
* | no more 'ccall' nor 'cpcall' functions. (With light C functions they | Roberto Ierusalimschy | 2010-04-14 | 1 | -19/+1 | |
| | | | | are obsolete.) | |||||
* | new macro LUA_NUMTAGS | Roberto Ierusalimschy | 2010-04-12 | 1 | -2/+2 | |
| | ||||||
* | keep memory-error message in the global state, so that its use | Roberto Ierusalimschy | 2010-04-08 | 1 | -2/+7 | |
| | | | | | does not depend on Lua internalizing strings to avoid a string creation on memory errors | |||||
* | no need to keep "_ENV" name in global state (can be kept in lex state) | Roberto Ierusalimschy | 2010-04-05 | 1 | -3/+1 | |
| | ||||||
* | global table now is only kept in the registry | Roberto Ierusalimschy | 2010-03-29 | 1 | -5/+3 | |
| | ||||||
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 1 | -5/+2 | |
| | ||||||
* | major collections in generational mode | Roberto Ierusalimschy | 2010-03-25 | 1 | -1/+2 | |
| | ||||||
* | 'mainthread' is not inserted in the 'allgc' list anymore, but swept | Roberto Ierusalimschy | 2010-03-25 | 1 | -3/+2 | |
| | | | | separately. | |||||
* | userdata with finalizers are kept in a separated list ('udgc'), instead | Roberto Ierusalimschy | 2010-03-24 | 1 | -2/+3 | |
| | | | | | of at the end of 'rootgc' (which was renamed to 'allgc', as it is not "root" in the usual meaning for collectors) | |||||
* | detail (wrong comment about LUAI_GCPAUSE) | Roberto Ierusalimschy | 2010-03-22 | 1 | -2/+2 | |
| | ||||||
* | 'cpcall' renamed to 'ccall' as it does not do a protected call | Roberto Ierusalimschy | 2010-03-19 | 1 | -6/+6 | |
| | ||||||
* | '_ENV' name permanently stored in global state for easier access | Roberto Ierusalimschy | 2010-03-13 | 1 | -1/+3 | |
| | ||||||
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -5/+9 | |
| | | | | through registry | |||||
* | several configuration options that do not change often moved out of | Roberto Ierusalimschy | 2009-12-17 | 1 | -1/+10 | |
| | | | | luaconf.h and into more internal files | |||||
* | allocator function receives the tag of object being allocated in 'osize' | Roberto Ierusalimschy | 2009-12-16 | 1 | -3/+2 | |
| | | | | when 'ptr' is NULL. | |||||
* | cleaner way to add extra space in a lua state. | Roberto Ierusalimschy | 2009-12-14 | 1 | -11/+22 | |
| | ||||||
* | (huge) simplification of GC management | Roberto Ierusalimschy | 2009-11-18 | 1 | -11/+3 | |
| | ||||||
* | no more one environment per thread: all threads share a single global | Roberto Ierusalimschy | 2009-10-23 | 1 | -10/+9 | |
| | | | | environment | |||||
* | new function lua_copy | Roberto Ierusalimschy | 2009-10-05 | 1 | -3/+2 | |
| | ||||||
* | 'cpcall' must ensure correct environment for called function | Roberto Ierusalimschy | 2009-09-30 | 1 | -2/+5 | |
| | ||||||
* | initialize g->estimate (just in case) | Roberto Ierusalimschy | 2009-09-28 | 1 | -2/+3 | |
| | ||||||
* | 'cpcall' reimplemented as a predefined value in the registry | Roberto Ierusalimschy | 2009-09-21 | 1 | -3/+30 | |
| | ||||||
* | 'lua_mainthread' replaced by new preregistered value LUA_RIDX_MAINTHREAD | Roberto Ierusalimschy | 2009-09-17 | 1 | -2/+12 | |
| | ||||||
* | new way to control stack overflow, controling only total size of the stack | Roberto Ierusalimschy | 2009-07-15 | 1 | -14/+5 | |
| | ||||||
* | new function 'lua_version' (so that 'checkversion' can be implemented | Roberto Ierusalimschy | 2009-06-18 | 1 | -2/+2 | |
| | | | | in the auxiliary library) | |||||
* | no more L->base + ci->base only for Lua functions (C functions may use | Roberto Ierusalimschy | 2009-06-01 | 1 | -2/+1 | |
| | | | | 'func') | |||||
* | new way to GC stacks: the entire stack must be correct all the times; | Roberto Ierusalimschy | 2009-04-28 | 1 | -1/+4 | |
| | | | | | the 'dead' part of a stack (after the top) must have only nil's, so that 'top' may go up without cleaning the stack. | |||||
* | several small improvements based on 'ci' being fixed now (including | Roberto Ierusalimschy | 2009-04-17 | 1 | -2/+1 | |
| | | | | erasing savedpc from lua_State) | |||||
* | 'luaM_freearray' does not need array type as argument | Roberto Ierusalimschy | 2009-04-17 | 1 | -3/+3 | |
| | ||||||
* | 'CallInfo' stack implemented as double-linked list instead of an array | Roberto Ierusalimschy | 2009-04-17 | 1 | -14/+47 | |
| | ||||||
* | yielding across lua_call (first version) | Roberto Ierusalimschy | 2009-03-10 | 1 | -2/+2 | |
| | ||||||
* | new macro 'lua_checkversion' to check whether core and application are | Roberto Ierusalimschy | 2009-02-18 | 1 | -1/+2 | |
| | | | | compatible | |||||
* | finalizers always called protected | Roberto Ierusalimschy | 2009-02-17 | 1 | -14/+2 | |
| | ||||||
* | better control of call status through CallInfo | Roberto Ierusalimschy | 2008-08-26 | 1 | -2/+2 | |
| | ||||||
* | new field 'status' in CallInfo structure | Roberto Ierusalimschy | 2008-08-13 | 1 | -1/+2 | |
| | ||||||
* | simplification in the handling of finalizers: no more 'tmudata' list + | Roberto Ierusalimschy | 2008-06-26 | 1 | -4/+4 | |
| | | | | no more GCSsweeptmu collector's state | |||||
* | userdata with finalizers are kept in a separated list | Roberto Ierusalimschy | 2008-02-19 | 1 | -6/+5 | |
| | ||||||
* | more options for 'kinds' of Garbage Collection | Roberto Ierusalimschy | 2008-02-11 | 1 | -2/+2 | |
| | ||||||
* | first implementation of ephemerons | Roberto Ierusalimschy | 2007-10-31 | 1 | -4/+2 | |
| | ||||||
* | some changes toward ephemerons | Roberto Ierusalimschy | 2007-10-29 | 1 | -2/+4 | |
| | ||||||
* | new constant LUA_OK | Roberto Ierusalimschy | 2006-10-10 | 1 | -4/+4 | |
| | ||||||
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 1 | -2/+2 | |
| |