aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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