aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix. remove magic numbers.moteus2013-12-261-5/+7
|
* Fix. Register LuaJIT built-in libraries.moteus2013-12-261-1/+17
|
* Add. `joinable` parameter to `start` method which control in which thread ↵moteus2013-12-261-27/+68
| | | | child Lua VM will be destroyed.
* Add. set_logger function allow logging errors (crash Lua VM) in current ↵moteus2013-12-261-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() methodmoteus2013-12-261-7/+26
|
* Fix. load library on Lua 5.2moteus2013-12-263-12/+22
|
* Fix. compile pthread version.moteus2013-12-261-4/+6
|
* Fix. include some std libraries.moteus2013-12-261-0/+5
|
* First commit.moteus2013-12-263-0/+832