summaryrefslogtreecommitdiffstats
path: root/src/common/thread_queue_list.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-10-21Revert "core: Fix clang build"bunnei1-2/+2
2020-10-18core: Fix clang buildLioncash1-2/+2
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
2020-08-15common: Make use of [[nodiscard]] where applicableLioncash1-5/+5
Now that clang-format makes [[nodiscard]] attributes format sensibly, we can apply them to several functions within the common library to allow the compiler to complain about any misuses of the functions.
2019-03-16common/thread_queue_list: Remove unnecessary dependency on boostLioncash1-3/+3
We really don't need to pull in several headers of boost related machinery just to perform the erase-remove idiom (particularly with C++20 around the corner, which adds universal container std::erase and std::erase_if, which we can just use instead). With this, we don't need to link in anything boost-related into common.
2018-11-22scheduler: Add explanations for YieldWith and WithoutLoadBalancingZach Hilman1-2/+2
2018-11-19svc: Implement yield types 0 and -1Zach Hilman1-0/+16
2018-08-12thread_queue_list: Make contains() and get_first() const member functionsLioncash1-4/+4
These don't directly modify the contained data.
2018-08-12thread_queue_list: Convert typedef to a type aliasLioncash1-1/+1
2018-01-21Format: Run the new clang format on everythingJames Rowe1-1/+1
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-1/+0
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-11/+11
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-2/+0
2015-04-10Thread: Implement priority boost for starved threads.bunnei1-0/+18
SVC: Return correct error code on invalid CreateThread processor ID. SVC: Assert when creating a thread with an invalid userland priority.
2015-01-07Common: Clean up ThreadQueueListYuri Kunde Schlesner1-144/+74
Replace all the C-style complicated buffer management with a std::deque. In addition to making the code easier to understand it also adds support for non-POD IdTypes. Also clean the rest of the code to follow our code style.
2014-12-21License changepurpasmart961-1/+1
2014-12-03Change NULLs to nullptrs.Rohit Nirmal1-6/+6
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot1-2/+2
2014-05-16added ThreadQueueList class to common (taken from PPSSPP)bunnei1-0/+216