summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_scoped_lock.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-13kernel: conver KScopedLock, KScopedResourceReservation, KSessionRequest, KSharedMemory, KSpinLockLiam1-6/+6
2023-03-06kernel: add missing header for libc++Jan Beich1-0/+1
In file included from src/core/hle/kernel/k_light_lock.cpp:4: In file included from src/./core/hle/kernel/k_light_lock.h:8: src/./core/hle/kernel/k_scoped_lock.h:25:51: error: no member named 'addressof' in namespace 'std' explicit KScopedLock(T& l) : KScopedLock(std::addressof(l)) {} ~~~~~^
2023-01-30Move to Clang Format 15Levi Behunin1-5/+6
Depends on https://github.com/yuzu-emu/build-environments/pull/69 clang-15 primary run
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-6/+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-11-04core: Fix transitive include build errorsameerj1-0/+3
2021-11-04core: Remove unused includesameerj1-2/+0
2021-09-24general: Update style to clang-format-12ameerj1-8/+7
2021-04-07Amend bizarre clang-format suggestionsLioncash1-3/+3
2021-04-07k_scoped_lock: delete copy and move assignment operatorsLioncash1-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).
2021-04-07k_scoped_lock: Mark class as [[nodiscard]]Lioncash1-1/+1
Prevents logic bugs of the kind described in the previous commit from slipping through.
2020-12-06hle: kernel: KScopedLock: Various style fixes based on code review feedback.bunnei1-6/+8
2020-12-06hle: kernel: Migrate to KScopedSchedulerLock.bunnei1-0/+39