diff options
| author | Alexey Melnichuk <alexeymelnichuck@gmail.com> | 2016-09-09 14:23:58 +0300 |
|---|---|---|
| committer | Alexey Melnichuk <alexeymelnichuck@gmail.com> | 2016-09-09 14:23:58 +0300 |
| commit | 357470d319acaf91d518fed2e03e2aef16c4838e (patch) | |
| tree | 851194fbcbf8e7cdbb200896906a1987d1cef9f6 | |
| parent | 0e4d2aab4c13e07f79a03d3870b5af2ba79a0662 (diff) | |
| download | lua-llthreads2-357470d319acaf91d518fed2e03e2aef16c4838e.tar.gz lua-llthreads2-357470d319acaf91d518fed2e03e2aef16c4838e.tar.bz2 lua-llthreads2-357470d319acaf91d518fed2e03e2aef16c4838e.zip | |
Release 0.1.4v0.1.4
| -rw-r--r-- | LICENSE | 2 | ||||
| -rw-r--r-- | dist.info | 2 | ||||
| -rw-r--r-- | rockspecs/lua-llthreads2-0.1.4-1.rockspec | 45 | ||||
| -rw-r--r-- | rockspecs/lua-llthreads2-compat-0.1.4-1.rockspec | 45 | ||||
| -rw-r--r-- | src/llthread.c | 2 |
5 files changed, 93 insertions, 3 deletions
| @@ -1,6 +1,6 @@ | |||
| 1 | The MIT License (MIT) | 1 | The MIT License (MIT) |
| 2 | 2 | ||
| 3 | Copyright (c) 2013-2015 Alexey Melnichuk | 3 | Copyright (c) 2013-2016 Alexey Melnichuk |
| 4 | 4 | ||
| 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of |
| 6 | this software and associated documentation files (the "Software"), to deal in | 6 | this software and associated documentation files (the "Software"), to deal in |
| @@ -1,5 +1,5 @@ | |||
| 1 | name = "lua-llthreads2" | 1 | name = "lua-llthreads2" |
| 2 | version = "0.1.3" | 2 | version = "0.1.4" |
| 3 | 3 | ||
| 4 | desc = "A simple Lua wrapper for pthreads & WIN32 threads." | 4 | desc = "A simple Lua wrapper for pthreads & WIN32 threads." |
| 5 | author = "Alexey Melnichuk" | 5 | author = "Alexey Melnichuk" |
diff --git a/rockspecs/lua-llthreads2-0.1.4-1.rockspec b/rockspecs/lua-llthreads2-0.1.4-1.rockspec new file mode 100644 index 0000000..6996f34 --- /dev/null +++ b/rockspecs/lua-llthreads2-0.1.4-1.rockspec | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | package = "lua-llthreads2" | ||
| 2 | version = "0.1.4-1" | ||
| 3 | source = { | ||
| 4 | url = "https://github.com/moteus/lua-llthreads2/archive/v0.1.4.zip", | ||
| 5 | dir = "lua-llthreads2-0.1.4", | ||
| 6 | } | ||
| 7 | description = { | ||
| 8 | summary = "Low-Level threads for Lua", | ||
| 9 | homepage = "http://github.com/moteus/lua-llthreads2", | ||
| 10 | license = "MIT/X11", | ||
| 11 | detailed = [[ | ||
| 12 | This is drop-in replacement for `lua-llthread` module but the module called `llthreads2`. | ||
| 13 | In additional module supports: thread join with zero timeout; logging thread errors with | ||
| 14 | custom logger; run detached joinable threads; pass cfunctions as argument to child thread. | ||
| 15 | ]], | ||
| 16 | } | ||
| 17 | dependencies = { | ||
| 18 | "lua >= 5.1, < 5.4", | ||
| 19 | } | ||
| 20 | build = { | ||
| 21 | type = "builtin", | ||
| 22 | platforms = { | ||
| 23 | unix = { | ||
| 24 | modules = { | ||
| 25 | llthreads2 = { | ||
| 26 | libraries = {"pthread"}, | ||
| 27 | } | ||
| 28 | } | ||
| 29 | }, | ||
| 30 | windows = { | ||
| 31 | modules = { | ||
| 32 | llthreads2 = { | ||
| 33 | libraries = {"kernel32"}, | ||
| 34 | } | ||
| 35 | } | ||
| 36 | } | ||
| 37 | }, | ||
| 38 | modules = { | ||
| 39 | llthreads2 = { | ||
| 40 | sources = { "src/l52util.c", "src/llthread.c" }, | ||
| 41 | defines = { "LLTHREAD_MODULE_NAME=llthreads2" }, | ||
| 42 | }, | ||
| 43 | ["llthreads2.ex"] = "src/lua/llthreads2/ex.lua", | ||
| 44 | } | ||
| 45 | } \ No newline at end of file | ||
diff --git a/rockspecs/lua-llthreads2-compat-0.1.4-1.rockspec b/rockspecs/lua-llthreads2-compat-0.1.4-1.rockspec new file mode 100644 index 0000000..f475184 --- /dev/null +++ b/rockspecs/lua-llthreads2-compat-0.1.4-1.rockspec | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | package = "lua-llthreads2-compat" | ||
| 2 | version = "0.1.4-1" | ||
| 3 | source = { | ||
| 4 | url = "https://github.com/moteus/lua-llthreads2/archive/v0.1.4.zip", | ||
| 5 | dir = "lua-llthreads2-0.1.4", | ||
| 6 | } | ||
| 7 | description = { | ||
| 8 | summary = "Low-Level threads for Lua", | ||
| 9 | homepage = "http://github.com/moteus/lua-llthreads2", | ||
| 10 | license = "MIT/X11", | ||
| 11 | detailed = [[ | ||
| 12 | This is drop-in replacement for `lua-llthread` module. | ||
| 13 | In additional module supports: thread join with zero timeout; logging thread errors with | ||
| 14 | custom logger; run detached joinable threads; pass cfunctions as argument to child thread. | ||
| 15 | ]], | ||
| 16 | } | ||
| 17 | dependencies = { | ||
| 18 | "lua >= 5.1, < 5.4", | ||
| 19 | } | ||
| 20 | build = { | ||
| 21 | type = "builtin", | ||
| 22 | platforms = { | ||
| 23 | unix = { | ||
| 24 | modules = { | ||
| 25 | llthreads = { | ||
| 26 | libraries = {"pthread"}, | ||
| 27 | } | ||
| 28 | } | ||
| 29 | }, | ||
| 30 | windows = { | ||
| 31 | modules = { | ||
| 32 | llthreads = { | ||
| 33 | libraries = {"kernel32"}, | ||
| 34 | } | ||
| 35 | } | ||
| 36 | } | ||
| 37 | }, | ||
| 38 | modules = { | ||
| 39 | llthreads = { | ||
| 40 | sources = { "src/l52util.c", "src/llthread.c" }, | ||
| 41 | defines = { "LLTHREAD_MODULE_NAME=llthreads" }, | ||
| 42 | }, | ||
| 43 | ["llthreads.ex"] = "src/lua/llthreads2/ex.lua", | ||
| 44 | } | ||
| 45 | } \ No newline at end of file | ||
diff --git a/src/llthread.c b/src/llthread.c index c2831eb..21d7934 100644 --- a/src/llthread.c +++ b/src/llthread.c | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #define LLTHREAD_VERSION_MAJOR 0 | 5 | #define LLTHREAD_VERSION_MAJOR 0 |
| 6 | #define LLTHREAD_VERSION_MINOR 1 | 6 | #define LLTHREAD_VERSION_MINOR 1 |
| 7 | #define LLTHREAD_VERSION_PATCH 4 | 7 | #define LLTHREAD_VERSION_PATCH 4 |
| 8 | #define LLTHREAD_VERSION_COMMENT "dev" | 8 | // #define LLTHREAD_VERSION_COMMENT "dev" |
| 9 | 9 | ||
| 10 | #ifndef USE_PTHREAD | 10 | #ifndef USE_PTHREAD |
| 11 | # include <windows.h> | 11 | # include <windows.h> |
