summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_scoped_lock.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* k_scoped_lock: delete copy and move assignment operatorsLioncash2021-04-071-2/+5
| | | | | | If we delete the copy and move constructor, we should also be deleting the copy and move assignment operators (and even if this were intended, it would be pretty odd to not document why it's done this way).
* k_scoped_lock: Mark class as [[nodiscard]]Lioncash2021-04-071-1/+1
| | | | | Prevents logic bugs of the kind described in the previous commit from slipping through.
* hle: kernel: KScopedLock: Various style fixes based on code review feedback.bunnei2020-12-061-6/+8
|
* hle: kernel: Migrate to KScopedSchedulerLock.bunnei2020-12-061-0/+39