aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Melnichuk <mimir@newmail.ru>2014-11-26 13:02:09 +0400
committerAlexey Melnichuk <mimir@newmail.ru>2014-11-26 13:02:09 +0400
commitc0c857924c695e1aacb601a809ee48bbbe903cc8 (patch)
treea38b12446c92d282faa8ab99f9b8c190afee0939
parentfebc8d1e0bcbe023cc8a38c87dda4e8a84ec9fdd (diff)
parent6fb18f36e7e9733beadbdbea641be7180126e6c0 (diff)
downloadlua-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.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index a224770..447d3f0 100644
--- a/README.md
+++ b/README.md
@@ -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