aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Melnichuk <mimir@newmail.ru>2014-07-02 11:24:51 +0500
committerAlexey Melnichuk <mimir@newmail.ru>2014-07-02 11:24:51 +0500
commit6fb18f36e7e9733beadbdbea641be7180126e6c0 (patch)
tree9c95f815722c0c8b94da1413b4ed49d4496a3699
parentdbf215ef683e545de593f5b434764b97dea3e2ac (diff)
downloadlua-llthreads2-6fb18f36e7e9733beadbdbea641be7180126e6c0.tar.gz
lua-llthreads2-6fb18f36e7e9733beadbdbea641be7180126e6c0.tar.bz2
lua-llthreads2-6fb18f36e7e9733beadbdbea641be7180126e6c0.zip
Update README.md
-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