Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Lua 5.3.5 ported to gitv5.3.5 | Roberto Ierusalimschy | 2018-12-17 | 1 | -1/+1 |
| | | | | | | | This is the first commit for the branch Lua 5.3. All source files were copied from the official distribution of 5.3.5 in the Lua site. The test files are the same of 5.3.4. The manual came from the previous RCS repository, revision 1.167.1.2. | ||||
* | allocation function is not exactly API (and cannot raise errors | Roberto Ierusalimschy | 2015-03-06 | 1 | -3/+2 |
| | | | | like other API functions); better not use 'api_check' for cheking it. | ||||
* | do not attempt emergency collection while building state (it is | Roberto Ierusalimschy | 2015-03-03 | 1 | -3/+5 |
| | | | | useless, and state can be inconsistent) | ||||
* | comments (references to "ANSI C" changed to "ISO C", which is the | Roberto Ierusalimschy | 2014-11-02 | 1 | -2/+2 |
| | | | | international name | ||||
* | added include for 'lprefix.h', for stuff that must be added before | Roberto Ierusalimschy | 2014-11-02 | 1 | -4/+6 |
| | | | | any other header file | ||||
* | `name' in comments changed to 'name' | Roberto Ierusalimschy | 2014-10-25 | 1 | -4/+4 |
| | |||||
* | removed unused parameter Ä'L' in macro 'api_check' and company | Roberto Ierusalimschy | 2014-07-15 | 1 | -2/+2 |
| | |||||
* | emergency collection can happen even when collector is stopped | Roberto Ierusalimschy | 2014-06-26 | 1 | -5/+3 |
| | |||||
* | removed debug code | Roberto Ierusalimschy | 2012-05-23 | 1 | -17/+1 |
| | |||||
* | avoid 'return' "to avoid warnings" | Roberto Ierusalimschy | 2011-11-30 | 1 | -3/+2 |
| | |||||
* | detail in extra trace code: total bytes is given by 'gettotalbytes', | Roberto Ierusalimschy | 2011-09-20 | 1 | -2/+2 |
| | | | | not by 'totalbytes' counter. | ||||
* | change in the relationship between totalbytes and GCdebt - luaM_realloc_ | Roberto Ierusalimschy | 2010-12-20 | 1 | -3/+2 |
| | | | | is too critical to update two counters | ||||
* | better control for GC running or stopped | Roberto Ierusalimschy | 2010-12-20 | 1 | -8/+5 |
| | |||||
* | typos in comments | Roberto Ierusalimschy | 2010-05-05 | 1 | -3/+3 |
| | |||||
* | changes in patch to monitor garbage collection | Roberto Ierusalimschy | 2010-05-04 | 1 | -10/+6 |
| | |||||
* | wrong comment | Roberto Ierusalimschy | 2010-04-30 | 1 | -2/+2 |
| | |||||
* | new way to control GC speed | Roberto Ierusalimschy | 2010-04-29 | 1 | -4/+7 |
| | |||||
* | added proper code to trace garbage collection | Roberto Ierusalimschy | 2010-04-02 | 1 | -1/+23 |
| | |||||
* | allocator function receives the tag of object being allocated in 'osize' | Roberto Ierusalimschy | 2009-12-17 | 1 | -9/+9 |
| | | | | when 'ptr' is NULL. | ||||
* | details | Roberto Ierusalimschy | 2006-09-14 | 1 | -3/+3 |
| | |||||
* | little better error messages for internal arrays overflows | Roberto Ierusalimschy | 2006-09-14 | 1 | -2/+2 |
| | |||||
* | emergency garbage collector (core forces a GC when allocation fails) | Roberto Ierusalimschy | 2006-07-11 | 1 | -6/+19 |
| | |||||
* | removal of dead code | Roberto Ierusalimschy | 2005-12-26 | 1 | -17/+1 |
| | |||||
* | details | Roberto Ierusalimschy | 2005-02-23 | 1 | -8/+8 |
| | |||||
* | auxiliar patch to monitor garbage collection | Roberto Ierusalimschy | 2005-01-14 | 1 | -1/+17 |
| | |||||
* | better control of overflows in size computations | Roberto Ierusalimschy | 2004-12-01 | 1 | -8/+6 |
| | |||||
* | better control over memory-size overflows | Roberto Ierusalimschy | 2004-11-19 | 1 | -8/+13 |
| | |||||
* | better control for GC cycles | Roberto Ierusalimschy | 2004-08-30 | 1 | -3/+2 |
| | |||||
* | new scheme for configuration through `luaconf.h' | Roberto Ierusalimschy | 2004-04-30 | 1 | -1/+2 |
| | |||||
* | avoid overflow when doubling size | Roberto Ierusalimschy | 2003-11-27 | 1 | -8/+11 |
| | |||||
* | Lua kernel does not use malloc/free functions. | Roberto Ierusalimschy | 2003-10-02 | 1 | -38/+27 |
| | |||||
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+3 |
| | |||||
* | global_State must be deallocated (and so allocated) with NULL also | Roberto Ierusalimschy | 2002-11-21 | 1 | -2/+4 |
| | | | | (otherwise it trys to decrement inside itself after its own free) | ||||
* | assertion must be always valid (not only in debug mode) | Roberto Ierusalimschy | 2002-10-25 | 1 | -1/+2 |
| | |||||
* | new ANSI C does not assure that realloc(p,0) == free(p) | Roberto Ierusalimschy | 2002-10-08 | 1 | -6/+13 |
| | |||||
* | new protocol for error handling | Roberto Ierusalimschy | 2002-06-18 | 1 | -2/+2 |
| | |||||
* | Lua now uses only `realloc' for all its memory management | Roberto Ierusalimschy | 2002-06-11 | 1 | -4/+11 |
| | |||||
* | new format for error messages | Roberto Ierusalimschy | 2002-05-15 | 1 | -3/+4 |
| | |||||
* | new way to handle errors | Roberto Ierusalimschy | 2002-05-01 | 1 | -2/+2 |
| | |||||
* | new way to handle errors | Roberto Ierusalimschy | 2002-04-22 | 1 | -4/+4 |
| | |||||
* | no more explicit support for wide-chars; too much troble... | Roberto Ierusalimschy | 2001-11-28 | 1 | -4/+3 |
| | |||||
* | no more MINPOWER2 | Roberto Ierusalimschy | 2001-10-25 | 1 | -5/+8 |
| | |||||
* | better syntax for type casts | Roberto Ierusalimschy | 2001-08-31 | 1 | -3/+4 |
| | |||||
* | new way to handle `profiles' | Roberto Ierusalimschy | 2001-03-26 | 1 | -1/+2 |
| | |||||
* | first (big) step to support wide chars | Roberto Ierusalimschy | 2001-02-23 | 1 | -3/+3 |
| | |||||
* | better separation between basic types | Roberto Ierusalimschy | 2001-02-20 | 1 | -4/+4 |
| | |||||
* | better use of extra include files (both for tests and for old_ansi) | Roberto Ierusalimschy | 2001-02-06 | 1 | -109/+6 |
| | |||||
* | details | Roberto Ierusalimschy | 2001-02-05 | 1 | -5/+5 |
| | |||||
* | macros LUA_ENTRY/LUA_EXIT to control exclusive access to Lua core | Roberto Ierusalimschy | 2001-01-24 | 1 | -3/+3 |
| | |||||
* | thead-specific state separated from "global" state | Roberto Ierusalimschy | 2001-01-19 | 1 | -4/+4 |
| |