Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-04-28 | chore: add missing SPDX tags | Andrea Pappacoda | 1 | -3/+3 | |
Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52 | |||||
2020-10-21 | Revert "core: Fix clang build" | bunnei | 1 | -2/+2 | |
2020-10-18 | core: Fix clang build | Lioncash | 1 | -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-15 | common: Make use of [[nodiscard]] where applicable | Lioncash | 1 | -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-16 | common/thread_queue_list: Remove unnecessary dependency on boost | Lioncash | 1 | -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-22 | scheduler: Add explanations for YieldWith and WithoutLoadBalancing | Zach Hilman | 1 | -2/+2 | |
2018-11-19 | svc: Implement yield types 0 and -1 | Zach Hilman | 1 | -0/+16 | |
2018-08-12 | thread_queue_list: Make contains() and get_first() const member functions | Lioncash | 1 | -4/+4 | |
These don't directly modify the contained data. | |||||
2018-08-12 | thread_queue_list: Convert typedef to a type alias | Lioncash | 1 | -1/+1 | |
2018-01-21 | Format: Run the new clang format on everything | James Rowe | 1 | -1/+1 | |
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | 1 | -1/+0 | |
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | |||||
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 1 | -11/+11 | |
2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | 1 | -2/+0 | |
2015-04-10 | Thread: Implement priority boost for starved threads. | bunnei | 1 | -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-07 | Common: Clean up ThreadQueueList | Yuri Kunde Schlesner | 1 | -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-21 | License change | purpasmart96 | 1 | -1/+1 | |
2014-12-03 | Change NULLs to nullptrs. | Rohit Nirmal | 1 | -6/+6 | |
2014-11-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 1 | -2/+2 | |
2014-05-16 | added ThreadQueueList class to common (taken from PPSSPP) | bunnei | 1 | -0/+216 | |