summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | input_engine: std::move InputIdentifier in SetCallback()Gravatar Lioncash2021-12-131-1/+1
| * | | | | | | | input_engine: Pass LedStatus by const referenceGravatar Lioncash2021-12-133-3/+3
| * | | | | | | | input_engine: Pass VibrationStatus by const reference in SetRumble()Gravatar Lioncash2021-12-137-12/+12
| * | | | | | | | input_engine: std::move engine name where applicableGravatar Lioncash2021-12-1315-29/+29
| * | | | | | | | input_engine: Remove callback clearing in constructorGravatar Lioncash2021-12-131-3/+1
| * | | | | | | | input_engine: Remove unnecessary semi-colonsGravatar Lioncash2021-12-131-6/+6
| * | | | | | | | input_engine: Remove unnecessary returnGravatar Lioncash2021-12-131-3/+1
| |/ / / / / / /
* | | | | | | | tas_input: Avoid minor copies in Read/WriteCommandButtons()Gravatar Lioncash2021-12-131-2/+2
* | | | | | | | tas_input: Remove unnecessary semicolonGravatar Lioncash2021-12-131-1/+1
* | | | | | | | tas_input: Execute clear() even if emptyGravatar Lioncash2021-12-131-3/+2
* | | | | | | | tas_input: Remove unnecessary includesGravatar Lioncash2021-12-131-2/+2
* | | | | | | | tas_input: std::move strings into vectorGravatar Lioncash2021-12-131-21/+24
* | | | | | | | tas_input: Use istringstream over stringstreamGravatar Lioncash2021-12-131-2/+2
* | | | | | | | tas_input: Use u8string_view instead of u8stringGravatar Lioncash2021-12-132-6/+7
* | | | | | | | tas_input: Remove unused std::smatch variableGravatar Lioncash2021-12-131-2/+0
* | | | | | | | tas_input: Amend -Wdocumentation warningsGravatar Lioncash2021-12-132-28/+30
* | | | | | | | tas_input: Make TasAxes enum an enum classGravatar Lioncash2021-12-132-5/+14
|/ / / / / / /
* | | | | | | Remove erroneous #pragma onceGravatar Valeri2021-12-131-2/+0
* | | | | | | Merge pull request #7462 from bunnei/kernel-improve-schedulingGravatar bunnei2021-12-1232-634/+895
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | hle: kernel k_scheduler: EnableScheduling: Remove redundant GetCurrentThreadP...Gravatar bunnei2021-12-061-3/+5
| * | | | | | hle: kernel k_process: Remove unnecessary .at usage with thread pinning methods.Gravatar bunnei2021-12-061-3/+3
| * | | | | | hle: kernel: Remove unnecessary virtual specifier on NotifyAvailable.Gravatar bunnei2021-12-061-2/+2
| * | | | | | hle: kernel: Remove unnecessary virtual specifier on EndWait.Gravatar bunnei2021-12-061-1/+1
| * | | | | | hle: kernel: k_light_condition_variable: Revert unnecessary license comment c...Gravatar bunnei2021-12-061-1/+1
| * | | | | | hle: kernel: k_condition_variable: Revert unnecessary style changes.Gravatar bunnei2021-12-061-2/+2
| * | | | | | hle: kernel: Remove unnecessary virtual specifier on CancelWait.Gravatar bunnei2021-12-066-14/+14
| * | | | | | hle: kernel: service_thread: Force stop threads on destruction.Gravatar bunnei2021-12-061-1/+7
| * | | | | | hle: kernel: k_light_lock: Implement CancelWait.Gravatar bunnei2021-12-061-5/+10
| * | | | | | hle: kernel: service_thread: Use std::jthread.Gravatar bunnei2021-12-061-18/+19
| * | | | | | hle: kernel: k_thread: Skip reschedule on DisableDispatch with SC.Gravatar bunnei2021-12-061-0/+5
| * | | | | | hle: kernel: k_thread: Rename sleeping_queue -> wait_queue.Gravatar bunnei2021-12-062-17/+13
| * | | | | | hle: kernel: svc: Fix deadlock that can occur with single core.Gravatar bunnei2021-12-061-10/+8
| * | | | | | hle: kernel: k_thread: Treat dummy threads as a special type.Gravatar bunnei2021-12-062-1/+4
| * | | | | | hle: kernel: fix timing on thread preemptionGravatar FernandoS272021-12-061-4/+2
| * | | | | | hle: kernel: fix scheduling ops from HLE host thread.Gravatar FernandoS272021-12-061-3/+3
| * | | | | | hle: kernel: Add a flag for indicating that the kernel is currently shutting ...Gravatar bunnei2021-12-066-0/+49
| * | | | | | hle: kernel: KSynchronizationObject: Fix variable shadowing.Gravatar bunnei2021-12-061-8/+8
| * | | | | | hle: kernel: Cleanup to match coding style.Gravatar bunnei2021-12-066-26/+21
| * | | | | | hle: kernel: KProcess: Improvements for thread pinning.Gravatar bunnei2021-12-062-8/+26
| * | | | | | hle: kernel: KThreadQueue: Remove deprecated code.Gravatar bunnei2021-12-061-63/+0
| * | | | | | hle: kernel: KConditionVariable: Various updates & simplifications.Gravatar bunnei2021-12-062-121/+65
| * | | | | | hle: kernel: KThread: Migrate to updated KThreadQueue (part 2).Gravatar bunnei2021-12-061-29/+19
| * | | | | | hle: kernel: KThread: Migrate to updated KThreadQueue (part 1).Gravatar bunnei2021-12-063-60/+71
| * | | | | | hle: kernel: KConditionVariable: Migrate to updated KThreadQueue.Gravatar bunnei2021-12-061-12/+55
| * | | | | | hle: kernel: KServerSession: Migrate to updated KThreadQueue.Gravatar bunnei2021-12-062-5/+11
| * | | | | | hle: kernel: KLightConditionVariable: Migrate to updated KThreadQueue.Gravatar bunnei2021-12-063-54/+87
| * | | | | | hle: kernel: KLightLock: Migrate to updated KThreadQueue.Gravatar bunnei2021-12-062-35/+36
| * | | | | | hle: kernel: KAddressArbiter: Migrate to updated KThreadQueue.Gravatar bunnei2021-12-061-43/+39
| * | | | | | hle: kernel: KThread: Remove tracking of sync object from threads.Gravatar bunnei2021-12-066-41/+21
| * | | | | | hle: kernel: Update KThreadQueue and migrate KSynchronizationObject.Gravatar bunnei2021-12-068-75/+251