summaryrefslogtreecommitdiffstats
path: root/src/tests/common/fibers.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-02-14remove static from pointer sized or smaller types for aesthetics, change constexpr static to static constexpr for consistencyarades791-1/+1
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14add static lifetime to constexpr values to force compile time evaluation where possiblearades791-1/+1
Signed-off-by: arades79 <scravers@protonmail.com>
2023-01-05tests: update catch2 to 3.0.1Alexandre Bouvier1-1/+1
2022-07-02common/fiber: make fibers easier to useLiam1-88/+35
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-03-07common: Fiber: use a reference for YieldTo.bunnei1-14/+14
- Fixes another small leak.
2021-03-06Revert "core: Switch to unique_ptr for usage of Common::Fiber."bunnei1-18/+21
2021-02-27core: Switch to unique_ptr for usage of Common::Fiber.bunnei1-21/+18
- With using unique_ptr instead of shared_ptr, we have more explicit ownership of the context. - Fixes a memory leak due to circular reference of the shared pointer.
2021-01-02general: Fix various spelling errorsMorph1-2/+2
2020-10-28tests: Fix data race in fibers testReinUsesLisp1-31/+40
Previous to this commit, the tests were using operator[] from unordered_map to query elements but this silently inserts empty elements when they don't exist. If all threads were executed without concurrency, this wouldn't be an issue, but the same unordered_map could be written from two threads at the same time. This is a data race and makes some previously inserted elements invisible for a short period of time, causing them to insert and return an empty element. This default constructed element (a zero) was used to index an array of fibers that asserted when one of them was nullptr, shutting the test session off. To address this issue, lock on thread id reads and writes. This could be a shared mutex to allow concurrent reads, but the definition of std::this_thread::get_id is fuzzy when using non-standard techniques like fibers. I opted to use a standard mutex. While we are at it, fix the included headers.
2020-06-28Core/Common: Address Feedback.Fernando Sahmkow1-1/+1
2020-06-18Common/Fiber: Implement Rewinding.Fernando Sahmkow1-0/+46
2020-06-18Common/Tests: Address FeedbackFernando Sahmkow1-10/+10
2020-06-18Common/Tests: Clang Format.Fernando Sahmkow1-9/+14
2020-06-18Common: Polish Fiber class, add comments, asserts and more tests.Fernando Sahmkow1-1/+94
2020-06-18Tests: Add tests for fibers and refactor/fix Fiber classFernando Sahmkow1-0/+214