Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Release 0.1.4v0.1.4 | Alexey Melnichuk | 2016-09-09 | 1 | -1/+1 |
| | |||||
* | Fix. Pass integer argument to thread. | Alexey Melnichuk | 2016-09-05 | 1 | -0/+5 |
| | |||||
* | Fix. Version on Lua 5.3 | Alexey Melnichuk | 2015-01-19 | 1 | -8/+8 |
| | |||||
* | Prepare release and bump version numbers to 0.1.3v0.1.3 | Alexey Melnichuk | 2015-01-13 | 1 | -1/+1 |
| | |||||
* | Fix. Build with Lua 5.3.beta | Alexey Melnichuk | 2014-11-26 | 1 | -0/+12 |
| | |||||
* | Add. rockspecs for 0.1.2v0.1.2 | Alexey Melnichuk | 2014-06-26 | 2 | -3/+1 |
| | |||||
* | Add. started/detached/joinable methods to thread object. | Alexey Melnichuk | 2014-06-25 | 2 | -2/+41 |
| | |||||
* | Add. llthreads2/ex exports thread metatable. | Alexey Melnichuk | 2014-06-23 | 1 | -0/+2 |
| | |||||
* | Update doc | Alexey Melnichuk | 2014-06-23 | 1 | -5/+33 |
| | |||||
* | Add. `llthreads2.ex` module. | Alexey Melnichuk | 2014-06-23 | 1 | -0/+152 |
| | |||||
* | Fix. build for Lua 5.2 with LUA_COMPAT_XXX | Alexey Melnichuk | 2014-02-10 | 2 | -0/+10 |
| | |||||
* | Add. `thread:alive()` method. | Alexey Melnichuk | 2014-02-04 | 1 | -0/+69 |
| | |||||
* | Add. rockspecs for version 0.1.0v0.1.0 | Alexey Melnichuk | 2014-01-09 | 1 | -1/+1 |
| | |||||
* | Add. library version | Alexey Melnichuk | 2014-01-09 | 1 | -0/+45 |
| | |||||
* | Change. Implement 2 rockspecs llthreads2 and llthreads2-compat. | moteus | 2013-12-31 | 1 | -9/+19 |
| | |||||
* | Fix. typo | moteus | 2013-12-31 | 1 | -6/+7 |
| | |||||
* | Code refactoring. | moteus | 2013-12-30 | 1 | -24/+14 |
| | |||||
* | Fix. call `join` on gc for attached not joinable thread. | moteus | 2013-12-30 | 3 | -266/+298 |
| | | | | Code refactoring. | ||||
* | Change. does not register llthread loader. | moteus | 2013-12-30 | 1 | -9/+13 |
| | | | | | This is because of better load dynamic library from child thread to prevent unload dynamic library if parent Lua state closes. | ||||
* | Add. pass cfunctions to child thread. | moteus | 2013-12-27 | 1 | -0/+5 |
| | |||||
* | Fix. detach joined thread. | moteus | 2013-12-27 | 1 | -8/+30 |
| | | | | Fix. try use child Lua state in join for detached thread. | ||||
* | Fix. child struct for start(true, true) should be destroyed by child thread. | moteus | 2013-12-27 | 1 | -61/+78 |
| | | | | | Fix. thread:join(0) in pthread should call pthread_join to free pthread_t struct. Code refactoring. | ||||
* | Add. logger test | moteus | 2013-12-27 | 1 | -18/+16 |
| | |||||
* | Fix. Open libraries with luaL_openlibs. | moteus | 2013-12-26 | 1 | -10/+12 |
| | |||||
* | Fix. register bit32 library on Lua5.2 | moteus | 2013-12-26 | 1 | -9/+7 |
| | |||||
* | Fix. remove magic numbers. | moteus | 2013-12-26 | 1 | -5/+7 |
| | |||||
* | Fix. Register LuaJIT built-in libraries. | moteus | 2013-12-26 | 1 | -1/+17 |
| | |||||
* | Add. `joinable` parameter to `start` method which control in which thread ↵ | moteus | 2013-12-26 | 1 | -27/+68 |
| | | | | child Lua VM will be destroyed. | ||||
* | Add. set_logger function allow logging errors (crash Lua VM) in current ↵ | moteus | 2013-12-26 | 1 | -9/+34 |
| | | | | | | | | | | | | llthread's threads. ``` Lua local llthreads = require "llthreads" local LOG = require"log".new( require "log.writer.net.zmq".new("tcp://127.0.0.1:5555") ) llthread.set_logger(function(msg) LOG.error(msg) end) ``` | ||||
* | Add. timeout parameter to thread:join() method | moteus | 2013-12-26 | 1 | -7/+26 |
| | |||||
* | Fix. load library on Lua 5.2 | moteus | 2013-12-26 | 3 | -12/+22 |
| | |||||
* | Fix. compile pthread version. | moteus | 2013-12-26 | 1 | -4/+6 |
| | |||||
* | Fix. include some std libraries. | moteus | 2013-12-26 | 1 | -0/+5 |
| | |||||
* | First commit. | moteus | 2013-12-26 | 3 | -0/+832 |