Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Renamed lane.h → lane.hpp, linda.h → linda.hpp, threading.h → ↵ | Benoit Germain | 2024-10-28 | 1 | -73/+0 |
| | | | | threading.hpp | ||||
* | More fixes to make clang happy | Benoit Germain | 2024-06-14 | 1 | -1/+1 |
| | |||||
* | Use a precompiled header to speed up the build | Benoit Germain | 2024-06-07 | 1 | -2/+0 |
| | |||||
* | More string_view | Benoit Germain | 2024-05-27 | 1 | -2/+2 |
| | |||||
* | All headers reformatted with updated clang-format settings | Benoit Germain | 2024-04-29 | 1 | -3/+3 |
| | |||||
* | Formalize a few coding style rules, start to enforce them for constants | Benoit Germain | 2024-04-26 | 1 | -6/+6 |
| | |||||
* | some dead code elimination and other trifles | Benoit Germain | 2024-04-16 | 1 | -9/+9 |
| | |||||
* | C++ migration: use strong type safety for source and destination states in ↵ | Benoit Germain | 2024-04-09 | 1 | -1/+0 |
| | | | | transfer functions | ||||
* | C++ migration: still more threading code cleanup. 'sudo' global moved in the ↵ | Benoit Germain | 2024-04-09 | 1 | -19/+5 |
| | | | | Universe | ||||
* | C++ migration: YIELD() → std::this_thread::yield. plus more threading code ↵ | Benoit Germain | 2024-04-09 | 1 | -152/+56 |
| | | | | cleanup | ||||
* | C++ migration: lanes.now_secs uses std::chrono::sytem_clock. plus more enum ↵ | Benoit Germain | 2024-04-08 | 1 | -15/+0 |
| | | | | class cleanup. | ||||
* | C++ migration: use std::jthread, std::condition_variable, std::chrono. | Benoit Germain | 2024-04-08 | 1 | -54/+4 |
| | | | | | | | | win32 pthread support is gone new setting configure.shutdown_mode for cancellation of free-running threads at shutdown. no more hard thread termination! If a thread doesn't cooperate, an error is raised. lane.status "killed" is gone lane:cancel can't force-kill. | ||||
* | C++ migration: removed most typedef, removed uint_t | Benoit Germain | 2024-03-20 | 1 | -10/+8 |
| | |||||
* | C++ migration: more NULL → nullptr | Benoit Germain | 2024-03-20 | 1 | -1/+1 |
| | |||||
* | C++ migration: bool_t → bool | Benoit Germain | 2024-03-20 | 1 | -10/+4 |
| | |||||
* | C++ migration: buildfixes | Benoit Germain | 2024-03-19 | 1 | -7/+1 |
| | | | | Essentially, buildfixes when compiling as C++, plus properly marking public API as extern "C" | ||||
* | src/threading.h: fix compilation on musl | Conrad Kostecki | 2024-01-23 | 1 | -1/+5 |
| | | | | Signed-off-by: Conrad Kostecki <conikost@gentoo.org> | ||||
* | tweaks to linux thread priority management | Benoit Germain | 2023-07-28 | 1 | -0/+4 |
| | |||||
* | Changed all indentations to all whitespaces | Benoit Germain | 2022-02-07 | 1 | -35/+32 |
| | | | | Tabs mess up alignment of stack contents comments, so I'm done with them. | ||||
* | Replace deprecated pthread_yield with sched_yield | SoundBot | 2022-01-19 | 1 | -1/+1 |
| | | | Since glibc 2.34, pthread_yield is nonstandard and marked as deprecated. See: https://man7.org/linux/man-pages/man3/pthread_yield.3.html | ||||
* | NetBSD support | nia | 2020-10-05 | 1 | -1/+1 |
| | | | | | | | | This adds support for NetBSD's flavour of pthreads. There are minor differences in the declaration of the non-portable pthread functions, and sched_yield is provided instead of pthread_yield_np. This allows LuaLanes to build and the test suite to run on NetBSD. | ||||
* | Threads compilation for Android fixed; Thread can't be killed to date ↵ | valid-ptr | 2018-11-27 | 1 | -1/+1 |
| | | | | (warning in logcat). | ||||
* | new API lanes.set_thread_affinity(), and et_debug_threadname implemented ↵ | Benoit Germain | 2018-11-09 | 1 | -0/+1 |
| | | | | with win32 pthread | ||||
* | Fix DLL exports | Benoit Germain | 2018-10-25 | 1 | -20/+2 |
| | |||||
* | Fix some MinGW _WIN32_WINNT-related build issues | Benoit Germain | 2014-02-26 | 1 | -7/+15 |
| | |||||
* | new API lanes.set_thread_priority() | Benoit Germain | 2013-12-04 | 1 | -43/+41 |
| | |||||
* | no need for pthread_cleanup_ pair when THREADWAIT_METHOD == THREADWAIT_CONDVAR | Benoit Germain | 2013-12-04 | 1 | -0/+5 |
| | |||||
* | Fixed missing extern variable declarations resulting in multiple variable ↵ | Benoit Germain | 2013-12-02 | 1 | -1/+1 |
| | | | | instances | ||||
* | MinGW-pthread doesn't seem to have pthread_timedjoin_np after all | Benoit Germain | 2013-12-02 | 1 | -1/+1 |
| | |||||
* | pthread thread priority refacto: threading.h | Benoit Germain | 2013-12-02 | 1 | -6/+3 |
| | |||||
* | supposedly improved pthread support | Benoit Germain | 2013-11-29 | 1 | -1/+11 |
| | | | | | | | | | * bumped version to 3.7.3 * set pthread thread cancel type to PTHREAD_CANCEL_ASYNCHRONOUS * lane_h:cancel() accepts a 3rd timeout argument used when waiting for actual thread termination (hitting the timeout raises an error) * added PROPAGATE_ALLOCF macro to select state creation mode (lua_newstate or luaL_newstate) | ||||
* | MinGW-pthread supports -3/+3 thread priority range, so accept it API-side too | Benoit Germain | 2013-11-22 | 1 | -1/+4 |
| | |||||
* | Fix some compiler-specific build issues | Benoit Germain | 2013-11-16 | 1 | -1/+7 |
| | |||||
* | Fix windows build for WINVER > 0x400 | Benoit Germain | 2013-10-25 | 1 | -1/+1 |
| | |||||
* | version 3.7.0 | Benoit Germain | 2013-10-11 | 1 | -1/+1 |
| | | | | | | | | | | | | * fix lanes.threads() not being available in a lane where lanes.configure() settings didn't contain track_lanes although the initial configure() call did. * require "lanes".configure() sequence is only necessary at the first require "lanes". * fix a crash at application shutdown where in some situations we could deinitialize the protected allocator mutex while a lane was still using it. * fix timers broken by change 69 | ||||
* | Ditch PulseEvent usage on WIN32 builds | Benoit Germain | 2013-07-20 | 1 | -2/+10 |
| | |||||
* | version 3.6.2 | Benoit Germain | 2013-05-20 | 1 | -8/+22 |
| | | | | | * WIN32 builds use condition variables instead of PulseEvent() when available. * first steps toward fixing make-vc.cmd | ||||
* | version 3.5.1v3.5.1 | Benoit Germain | 2013-02-13 | 1 | -6/+12 |
| | | | | | | | * new lanes.h header and API call luaopen_lanes_embedded() for embedders * "lanes.core" is an acceptable library in the generator libs argument * library "*" wildcard also opens lanes.core * tweaked code for Xbox 360 build | ||||
* | minor internal changes | Benoit Germain | 2012-09-13 | 1 | -0/+1 |
| | | | | | | * implemented set_debug_threadname() for pthread builds where possible * refactored linda __tostring and __concat * linda metatable's __metatable is a string instead of a boolean | ||||
* | code tweaks to enable building against win32-pthread on windows platforms. | Benoit Germain | 2012-09-11 | 1 | -3/+9 |
| | | | | not active by default, see threading.h. | ||||
* | version 3.3.0 | Benoit Germain | 2012-09-10 | 1 | -0/+3 |
| | | | | | | | | | | | | * lane.status can return "killed" if lane was forcefully killed with lanes:cancel() * lane:join(): return nil, "killed" if called on a killed lane. * lane[<n>]: produces [1] = nil, [2] = "killed" if the lane was killed * lane:join(): fixed an assertion in debug builds when joining a lane forcefully cancelled with lane:cancel( <x>, true). * indexing a lane with a string other than "join", "cancel" or "status" raises an error. * fixed configure() to correctly apply defaults when they are missing from the provided settings * added a shutdown_timeout to control the duration Lanes will wait for graceful termination of running lanes at application shutdown. Default is 0.25. Among other things, fixes issue #31. | ||||
* | Merge pull request #17 from LuaDist/550dd55b0e571577a4ca6ccc880738f1268adb57 | benoit-germain | 2012-04-24 | 1 | -13/+6 |
|\ | | | | | merge commits from steve | ||||
| * | MinGW build now does not use MS runtime | steve donovan | 2011-03-16 | 1 | -13/+6 |
| | | |||||
* | | * removed packagepath and packagecpath options, replaced by a package table, ↵ | Benoit Germain | 2011-11-14 | 1 | -16/+39 |
|/ | | | | | | | whose fields path, cpath, loaders, preload are transfered * code cleanup to facilitate transition between WIN32 and PTHREAD impleentations * tentative fix for desinit crashes when free running lanes are killed at process shutdown | ||||
* | Import to git | Peter Drahoš | 2010-10-01 | 1 | -0/+196 |