summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2021-10-06Merge pull request #7118 from ameerj/vc-gpu-implFernando S
gpu: Migrate implementation to the cpp file
2021-10-05Merge pull request #7115 from ameerj/log-compilebunnei
common/logging: Reduce dependent header include overhead
2021-10-04Merge pull request #7103 from Morph1984/service-ctx-eventbunnei
service: Replace all service event creation with ServiceContext::CreateEvent
2021-10-04Merge pull request #7107 from astrelsky/iob_fixbunnei
prevent access violation from iob in Memory::IsValidVirtualAddress
2021-10-04Merge pull request #7091 from vonchenplus/fix_memroy_leakAmeer J
core: Fix memory leak
2021-10-02Merge pull request #7113 from Morph1984/no-log-ip-addrbunnei
network: Do not log IP address
2021-10-03nvflinger: Use jthread and stop_token for VSync threadameerj
Avoids a destruction data race that may occur on the vsync thread
2021-10-03nvhost_ctrl: Refactor usage of gpu.LockSync()ameerj
This seems to only be used to protect a later gpu function call. So we can move the lock into that call instead.
2021-10-03gpu: Migrate implementation to the cpp fileameerj
2021-10-01service: am: Make use of Exit to exit the currently running applicationMorph
This also moves the call to the end to ensure services are properly destructed on exit.
2021-10-01core: Add Exit and ExitCallbackMorph
This allows ISelfController::Exit to stop the currently running application. This is typically used by homebrew to exit back to the homebrew menu after calling consoleExit with libnx.
2021-10-01service: Replace service event creation with ServiceContext::CreateEventMorph
The service context helps to manage all created events and allows us to close them upon destruction.
2021-10-01network: Do not log IP addressMorph
Logging this may be a privacy concern for some users.
2021-10-01Merge pull request #7102 from Morph1984/remove-boxcatbunnei
Remove Boxcat BCAT backend
2021-10-01common/logging: Reduce scope of fmt includeameerj
2021-10-01common/logging: Move Log::Entry declaration to a separate headerameerj
This reduces the load of requiring to include std::chrono in all files which include log.h
2021-09-29prevent access violation from iob in Memory::IsValidVirtualAddressAndrew Strelsky
2021-09-29style: Remove extra space preceding the :: operatorMorph
2021-09-29service: bcat: Remove BoxCat BCAT implementationMorph
The current implementation of BoxCat as it stands is non-functional due to the reliance on a server providing BCAT files. This implementation will eventually be replaced with one that allows the use of local BCAT files dumped from a Nintendo Switch.
2021-09-28externals: Remove libzipMorph
2021-09-28file_sys: Remove vfs_libzipMorph
2021-09-28Merge pull request #7018 from lat9nq/splat-stubsMorph
audin_u: stub Start, RegisterBufferEvent, AppendAudioInBufferAuto
2021-09-29Fix KShareMemory object leakFeng Chen
2021-09-26service/es: Update to 13.0.0german77
2021-09-26service/npns: Update to 13.0.0german77
2021-09-26service/vi: Update to 13.0.0german77
2021-09-26service/am: Update to 13.0.0german77
2021-09-26service/audio: Update to 13.0.0german77
2021-09-26service/hid: Update to 13.0.0german77
2021-09-26service/btdrv: Update to 13.0.0german77
2021-09-26service/usb: Update to 13.0.0german77
2021-09-26Merge pull request #7078 from ameerj/vc-jthread-fixesMorph
video_core: Fix jthread related hangs when stopping emulation
2021-09-25Fix KScopedAutoObject object leak when SendSyncRequestFeng Chen
2021-09-25service: bsd: Stub ReadMorph
- Used by Diablo II: Resurrected
2021-09-24service: bsd: Implement ReadMorph
- Used by Diablo II: Resurrected
2021-09-24general: Update style to clang-format-12ameerj
2021-09-23video_core: Fix jthread related hangs when stopping emulationameerj
jthread on some compilers is more picky when it comes to the order in which objects are destroyed.
2021-09-22core/profile_select: Avoid uninitialized read in SelectProfile()Lioncash
The default constructor of UUID doesn't initialize its data members, so we need to directly initialize it to be invalid.
2021-09-22common/uuid: Add validity checking functions to interfaceLioncash
Given we have a function to invalidate, we should also have ones to query the validity. Also makes the code more straightforward to read.
2021-09-18Merge pull request #7019 from ameerj/videocore-jthreadbunnei
videocore: Use std::jthread for worker threads
2021-09-18Merge pull request #7020 from Moonlacer/remove_audio_stretchingbunnei
Remove audio stretching
2021-09-17Merge pull request #7015 from german77/NotGoodForTerrabunnei
ngct: Stub Match
2021-09-15remove-audio-stretching-settingMoonlacer
2021-09-15gpu: Use std::jthread for async gpu threadameerj
2021-09-15audin_u: Return a buffer event in RegisterBufferEventlat9nq
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
2021-09-15audin_u: stub Start, RegisterBufferEvent, AppendAudioInBufferAutolat9nq
This also moves IAudioIn's definition to the header. Required for Splatoon 2 LAN play.
2021-09-15ngct: Stub MatchNarr the Reg
Needed for Cruis'n Blast
2021-09-14vfs: Partially implement GetFileTimeStampRawMorph
Gets rid of homebrew warnings using this func
2021-09-13Merge pull request #7009 from ameerj/main_process_cleanupbunnei
core: Destroy main_process during shutdown
2021-09-13core: Destroy main_process during shutdownameerj
The main_process was never being cleaned up, causing a noticeable memory leak after subsequent launches. This change cleans up the memory during Core Shutdown, mitigating the leak.