summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_scoped_lock.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel: conver KScopedLock, KScopedResourceReservation, KSessionRequest, KSharedMemory, KSpinLockLiam2023-03-131-6/+6
|
* kernel: add missing header for libc++Jan Beich2023-03-061-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)) {} ~~~~~^
* Move to Clang Format 15Levi Behunin2023-01-301-5/+6
| | | | | | Depends on https://github.com/yuzu-emu/build-environments/pull/69 clang-15 primary run
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-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.
* core: Fix transitive include build errorsameerj2021-11-041-0/+3
|
* core: Remove unused includesameerj2021-11-041-2/+0
|
* general: Update style to clang-format-12ameerj2021-09-241-8/+7
|
* Amend bizarre clang-format suggestionsLioncash2021-04-071-3/+3
|
* 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