summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2022-10-31kernel: invert session request handling flowLiam
2022-10-31kernel: more complete fix for KPort reference countingLiam
2022-10-30k_thread: fix single coreLiam
2022-10-30kernel: reinitialize after dram layout changeLiam
2022-10-29Merge pull request #9149 from german77/volumbunnei
service: am: Stub SetRecordVolumeMuted
2022-10-30service: am: Stub SetRecordVolumeMutedgerman77
Used by bayonetta 3
2022-10-29k_server_session: fix crashesLiam
2022-10-29Merge pull request #9137 from liamwhite/hbmenubunnei
Improved support for nx-hbmenu
2022-10-27Merge pull request #9138 from liamwhite/hbl-stacktraceliamwhite
arm_interface: curb infinite recursion in stacktrace generation
2022-10-27arm_interface: curb infinite recursion in stacktrace generationLiam
2022-10-27Merge pull request #9115 from vonchenplus/game_name_by_languagebunnei
file_sys: Priority display of game titles in the current language
2022-10-27nvnflinger: release queued handles immediately on disconnectionLiam
2022-10-27vi: implement CloseDisplayLiam
2022-10-27Merge pull request #9134 from lioncash/initliamwhite
audio_in/out_system: Pass Initialize members by value where applicable
2022-10-26Merge pull request #9125 from liamwhite/dummy-schedulerbunnei
kernel: refactor dummy thread wakeups
2022-10-26audio_in/out_system: Pass Initialize members by value where applicableLioncash
applet_resource_user_id isn't actually modified and is just assigned to a member variable, so this doesn't need to be a mutable reference. Similarly, the device name itself isn't modified and is only moved. We pass by value here, since we can still perform the move, but eliminate a sneaky set of calls that can unintentionally destroy the original string. Given how nested the calls are, it's good to get rid of this potential vector for a use-after-move bug.
2022-10-26concepts: Use the std::contiguous_iterator conceptMorph
This also covers std::span, which does not have a const iterator. Also renames IsSTLContainer to IsContiguousContainer to explicitly convey its semantics.
2022-10-25Merge pull request #9113 from german77/peer_pressureliamwhite
service: nfp: Allow amiibos without keys
2022-10-25Merge pull request #9107 from german77/gidoly_rulesliamwhite
input_common: cache vibration tests
2022-10-25Merge pull request #9119 from liamwhite/shutdown-barrierliamwhite
core: barrier service thread shutdown
2022-10-24kernel: refactor dummy thread wakeupsLiam
2022-10-24file_sys: Priority display of game titles in the current languageFengChen
2022-10-24Merge pull request #9122 from liamwhite/burnt-chickenFernando S
nvdrv: fix container destruction order
2022-10-23nvdrv: fix container destruction orderLiam
2022-10-23core: barrier service thread shutdownLiam
2022-10-22core: hid: Add handheld to nfc devicesgerman77
2022-10-22general: Resolve -Wunused-lambda-capture and C5233Morph
2022-10-22ipc_helpers: Ignore GCC compiler warnings only on GCCMorph
Clang and ICC for whatever reason also defines __GNUC__. Exclude them from this check.
2022-10-22general: Enforce C4800 everywhere except in video_coreMorph
2022-10-22CMakeLists: Remove all redundant warningsMorph
These are already explicitly or implicitly set in src/CMakeLists.txt
2022-10-21service: nfp: Allow amiibos without keysNarr the Reg
2022-10-21service: nfp: remove unnecessary includeNarr the Reg
2022-10-21Merge pull request #9106 from lioncash/copy-errliamwhite
hid/npad: Fix copy size in GetSupportedNpadIdTypes
2022-10-21k_session_request: Add missing override specifierLioncash
2022-10-21k_session_request: Turn C-style array into std::arrayLioncash
Makes for stronger typing and allows tooling bounds checks provided by the standard library for debugging purposes.
2022-10-21k_session_request: Simplify constructor initializationLioncash
2022-10-21input_common: cache vibration testsgerman77
2022-10-21hid/npad: Fix copy size in GetSupportedNpadIdTypesLioncash
Previously this was passing the size of the vector into memcpy rather than the size in bytes to copy, which would result in a partial read. Thankfully, this function isn't used yet, so this gets rid of a bug before it's able to do anything.
2022-10-20Merge pull request #9078 from liamwhite/session-requestliamwhite
kernel: Session request cleanup
2022-10-20Merge pull request #9096 from Kelebek1/audio_15bunnei
[audio_core] Update for firmware 15.0.0
2022-10-19kernel: remove most SessionRequestManager handling from KServerSessionLiam
2022-10-19kernel: add KSessionRequestLiam
2022-10-19Merge pull request #9082 from Morph1984/futureliamwhite
savedata_factory: Detect future save data paths
2022-10-19Merge pull request #9083 from liamwhite/take-a-chance-on-meliamwhite
kernel: fix slab heap ABA
2022-10-19Merge pull request #9071 from bunnei/mp-mmliamwhite
Kernel Multiprocess (Part 1) - Persist memory & core timing
2022-10-19core: hle: kernel: Migrate ProcessState to enum class.bunnei
2022-10-19Update audio_core for firmware 15.0.0Kelebek1
2022-10-19Merge pull request #9084 from vonchenplus/dma_copyFernando S
video_core: implement 1D copies based on VMM 'kind'
2022-10-18core: Initialize: Add missing braces.bunnei
2022-10-18core: core_timing: Re-initialize if single/multicore state changes.bunnei