diff options
author | Alexey Melnichuk <mimir@newmail.ru> | 2014-11-26 13:02:09 +0400 |
---|---|---|
committer | Alexey Melnichuk <mimir@newmail.ru> | 2014-11-26 13:02:09 +0400 |
commit | c0c857924c695e1aacb601a809ee48bbbe903cc8 (patch) | |
tree | a38b12446c92d282faa8ab99f9b8c190afee0939 | |
parent | febc8d1e0bcbe023cc8a38c87dda4e8a84ec9fdd (diff) | |
parent | 6fb18f36e7e9733beadbdbea641be7180126e6c0 (diff) | |
download | lua-llthreads2-c0c857924c695e1aacb601a809ee48bbbe903cc8.tar.gz lua-llthreads2-c0c857924c695e1aacb601a809ee48bbbe903cc8.tar.bz2 lua-llthreads2-c0c857924c695e1aacb601a809ee48bbbe903cc8.zip |
Merge branch 'master' of https://github.com/moteus/lua-llthreads2
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -21,12 +21,12 @@ This is full dropin replacement for [llthreads](https://github.com/Neopallium/lu | |||
21 | * allow pass cfunctions to child thread (e.g. to initialize Lua state) | 21 | * allow pass cfunctions to child thread (e.g. to initialize Lua state) |
22 | 22 | ||
23 | ##Thread start arguments | 23 | ##Thread start arguments |
24 | | default | `detached` | `joinable` | join returns | child state closes by | gc calls | detach on | | 24 | | `detached` | `joinable` | join returns | child state closes by | gc calls | detach on | |
25 | |:-------:|:----------:|:----------:|:------------:|:---------------------:|:--------:|:---------:| | 25 | |:----------:|:----------:|:------------:|:---------------------:|:--------:|:---------:| |
26 | | | false | false | `true` | child | join | `<NEVER>` | | 26 | | false | false | `true` | child | join | `<NEVER>` | |
27 | | * | false | true | Lua values | parent | join | `<NEVER>` | | 27 | | false(*) | true(*) | Lua values | parent | join | `<NEVER>` | |
28 | | * | true | false | raise error | child | `<NONE>` | start | | 28 | | true | false(*) | raise error | child | `<NONE>` | start | |
29 | | | true | true | `true` | child | detach | gc | | 29 | | true | true | `true` | child | detach | gc | |
30 | 30 | ||
31 | 31 | ||
32 | ##Usage | 32 | ##Usage |