summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_priority_queue.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: hle: kernel: Rename Thread to KThread.bunnei2021-01-291-2/+2
|
* common/bit_util: Replace CLZ/CTZ operations with standardized onesLioncash2021-01-151-2/+2
| | | | Makes for less code that we need to maintain.
* k_priority_queue: Fix concepts usecomex2020-12-291-3/+5
| | | | | | | | | | | | - For `std::same_as`, add missing include of `<concepts>`. - For `std::convertible_to`, create a replacement in `common/concepts.h` and use that instead. This would also be found in `<concepts>`, but unlike `std::same_as`, `std::convertible_to` is not yet implemented in libc++, LLVM's STL implementation - not even in master. (In fact, `std::same_as` is the *only* concept currently implemented. For some reason.)
* hle: kernel: KPriorityQueue: Various style fixes based on code review feedback.bunnei2020-12-061-29/+36
|
* hle: kernel: Use C++ style comments in KScheduler, etc.bunnei2020-12-061-32/+31
|
* common: Port KPriorityQueue from Mesosphere.bunnei2020-12-061-0/+443