aboutsummaryrefslogtreecommitdiff
path: root/src/lanes.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* C++ migration: still more threading code cleanup. 'sudo' global moved in the ↵Benoit Germain2024-04-091-29/+3
| | | | Universe
* C++ migration: YIELD() → std::this_thread::yield. plus more threading code ↵Benoit Germain2024-04-091-2/+2
| | | | cleanup
* C++ migration: lanes.now_secs uses std::chrono::sytem_clock. plus more enum ↵Benoit Germain2024-04-081-37/+37
| | | | class cleanup.
* C++ migration: use std::jthread, std::condition_variable, std::chrono.Benoit Germain2024-04-081-214/+123
| | | | | | | | 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: one-time inits are sequenced with std::atomic_flagBenoit Germain2024-04-051-30/+14
|
* C++ migration: more atomicsBenoit Germain2024-04-021-25/+25
|
* C++ migration: fix some warnings in 32 bits buildsBenoit Germain2024-03-311-13/+7
|
* C++ migration: make sure to always create the lane handle userdataBenoit Germain2024-03-301-42/+69
|
* C++ migration: all enums are enum classBenoit Germain2024-03-291-43/+43
|
* C++ migration: parallelize lane setup and OS thread warmupBenoit Germain2024-03-291-100/+141
|
* C++ migration: Lane is a proper class with overloaded operator new/deleteBenoit Germain2024-03-291-46/+42
|
* C++ migration: improved UniqueKey interfaceBenoit Germain2024-03-281-39/+32
|
* C++ migration: lots of noise, but it's only some minor code cleanupBenoit Germain2024-03-281-678/+709
|
* C++ migration: cleanup usage of lua_error and luaL_errorBenoit Germain2024-03-281-6/+4
|
* C++ migration: less kludgy Linda name management with a std::variantBenoit Germain2024-03-281-3/+1
|
* C++ migration:: new helper template lua_newuserdatauvBenoit Germain2024-03-271-4/+3
|
* C++ migration: new helper templates lua_tolightuserdata and lua_tofulluserdataBenoit Germain2024-03-271-5/+5
|
* C++ migration: templated lua_touserdataBenoit Germain2024-03-261-3/+3
|
* C++ migration: refactor AllocatorDefinition and ProtectedAllocator into classesBenoit Germain2024-03-261-15/+5
|
* C++ migration: Universe MUTEX_T replaced with std::mutex and std::atomicBenoit Germain2024-03-251-41/+29
|
* C++ migration: revamped stack checking macrosBenoit Germain2024-03-251-53/+54
|
* C++ migration: STACK_GROW is no longer a macro, sanitized and fixed warnings ↵Benoit Germain2024-03-221-1/+1
| | | | in keeper.cpp
* C++ migration: REGISTRY_SET and REGISTRY_GET are gone, welcome templates and ↵Benoit Germain2024-03-211-17/+18
| | | | lambdas
* C++ migration: ThreadStatus, CancelRequest and CancelResult are enum classBenoit Germain2024-03-201-9/+9
|
* C++ migration: removed most typedef, removed uint_tBenoit Germain2024-03-201-6/+6
|
* C++ migration: more NULL → nullptrBenoit Germain2024-03-201-9/+14
|
* C++ migration: UniqueKeyBenoit Germain2024-03-201-12/+13
|
* C++ migration: bool_t → boolBenoit Germain2024-03-201-31/+28
|
* C++ migration: NULL → nullptrBenoit Germain2024-03-191-31/+31
|
* C++ migration: changed file extensions from .c to .cppBenoit Germain2024-03-191-0/+2142