Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-01-13 | Prepare release and bump version numbers to 0.1.3v0.1.3 | Alexey Melnichuk | 1 | -1/+1 | |
2015-01-13 | Update Travis file. | Alexey Melnichuk | 1 | -3/+3 | |
2014-11-26 | Run test with Lua 5.3 on Travis | Alexey Melnichuk | 2 | -19/+29 | |
2014-11-26 | Fix. Build with Lua 5.3.beta | Alexey Melnichuk | 3 | -2/+14 | |
2014-07-02 | Update README.md | Alexey Melnichuk | 1 | -6/+6 | |
2014-06-30 | Fix. CMakeLists file install `llthreads2.ex` module. | Alexey Melnichuk | 1 | -1/+2 | |
2014-06-26 | Add. rockspecs for 0.1.2v0.1.2 | Alexey Melnichuk | 5 | -4/+92 | |
2014-06-26 | Update README.md | Alexey Melnichuk | 1 | -5/+5 | |
2014-06-25 | Run Travis tests on Linux. | Alexey Melnichuk | 1 | -1/+1 | |
2014-06-25 | Add. started/detached/joinable methods to thread object. | Alexey Melnichuk | 5 | -2/+64 | |
2014-06-23 | Fix. lakefile | Alexey Melnichuk | 1 | -2/+3 | |
2014-06-23 | Add. llthreads2/ex exports thread metatable. | Alexey Melnichuk | 1 | -0/+2 | |
2014-06-23 | Update README.md | Alexey Melnichuk | 1 | -1/+1 | |
2014-06-23 | Update doc | Alexey Melnichuk | 2 | -5/+61 | |
2014-06-23 | Fix. `compat` rockspec install `llthreads.ex` module. | Alexey Melnichuk | 4 | -18/+88 | |
Update Travis files. | |||||
2014-06-23 | Add. `llthreads2.ex` module. | Alexey Melnichuk | 8 | -4/+286 | |
2014-06-18 | Update README.md | Alexey Melnichuk | 1 | -1/+2 | |
2014-06-18 | Update README.md | Alexey Melnichuk | 1 | -1/+1 | |
2014-06-18 | Update README.md | Alexey Melnichuk | 1 | -0/+9 | |
2014-02-11 | Update gitignore. [ci skip] | Alexey Melnichuk | 1 | -0/+5 | |
2014-02-10 | Add. LuaDist files. | Alexey Melnichuk | 5 | -0/+786 | |
2014-02-10 | Fix. build for Lua 5.2 with LUA_COMPAT_XXX | Alexey Melnichuk | 2 | -0/+10 | |
2014-02-07 | Fix. rockspec name | Alexey Melnichuk | 1 | -0/+0 | |
2014-02-07 | Add. rockspecs for version 0.1.1v0.1.1 | Alexey Melnichuk | 2 | -0/+88 | |
2014-02-04 | Add. cloudbees badge | Alexey Melnichuk | 1 | -0/+1 | |
2014-02-04 | Fix. does not run `register` thread | Alexey Melnichuk | 2 | -1/+2 | |
2014-02-04 | Update test. | Alexey Melnichuk | 1 | -3/+8 | |
2014-02-04 | Test on MacOSX | Alexey Melnichuk | 1 | -2/+2 | |
2014-02-04 | Change travis files. | Alexey Melnichuk | 2 | -27/+40 | |
2014-02-04 | Add. `thread:alive()` method. | Alexey Melnichuk | 5 | -0/+124 | |
2014-02-04 | Add. Test to double join to same thread | Alexey Melnichuk | 3 | -0/+26 | |
2014-01-09 | Add. rockspecs for version 0.1.0v0.1.0 | Alexey Melnichuk | 4 | -2/+90 | |
2014-01-09 | Add. library version | Alexey Melnichuk | 2 | -0/+47 | |
2013-12-31 | Fix. llthreads2 rockspec | moteus | 1 | -2/+2 | |
2013-12-31 | Add. test for lua-llthreas2 module. | moteus | 3 | -4/+13 | |
2013-12-31 | Update README [ci skip] | moteus | 1 | -7/+9 | |
2013-12-31 | Change. Implement 2 rockspecs llthreads2 and llthreads2-compat. | moteus | 4 | -11/+71 | |
2013-12-31 | Fix. typo | moteus | 1 | -6/+7 | |
2013-12-30 | Add. lakefile | moteus | 2 | -0/+295 | |
2013-12-30 | Code refactoring. | moteus | 1 | -24/+14 | |
2013-12-30 | Fix. call `join` on gc for attached not joinable thread. | moteus | 3 | -266/+298 | |
Code refactoring. | |||||
2013-12-30 | Change. does not register llthread loader. | moteus | 6 | -15/+44 | |
This is because of better load dynamic library from child thread to prevent unload dynamic library if parent Lua state closes. | |||||
2013-12-27 | Add. pass cfunctions to child thread. | moteus | 4 | -1/+24 | |
2013-12-27 | Fix. detach joined thread. | moteus | 3 | -10/+60 | |
Fix. try use child Lua state in join for detached thread. | |||||
2013-12-27 | Fix. child struct for start(true, true) should be destroyed by child thread. | moteus | 1 | -61/+78 | |
Fix. thread:join(0) in pthread should call pthread_join to free pthread_t struct. Code refactoring. | |||||
2013-12-27 | Add. logger test | moteus | 3 | -18/+39 | |
2013-12-26 | Fix. Open libraries with luaL_openlibs. | moteus | 1 | -10/+12 | |
2013-12-26 | Fix. register bit32 library on Lua5.2 | moteus | 1 | -9/+7 | |
2013-12-26 | Fix. remove magic numbers. | moteus | 1 | -5/+7 | |
2013-12-26 | Fix. Register LuaJIT built-in libraries. | moteus | 3 | -1/+32 | |