summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2021-09-12FS: Mark recursive CreateDirectory as inaccurate and temporaryMorph
2021-09-12Merge pull request #6975 from ogniK5377/acc-async-ctxMorph
account: EnsureTokenIdCacheAsync
2021-09-12Merge pull request #6974 from ogniK5377/fs-recursive-createdirMorph
FS: Recursively create directories for CreateDirectory
2021-09-12Merge pull request #6992 from german77/brainsMorph
hid/am: Stub SetTouchScreenConfiguration and implement GetNotificationStorageChannelEvent
2021-09-12Merge pull request #6987 from Morph1984/common-errorMorph
common: Move error handling functions out of common_funcs
2021-09-12Merge pull request #6986 from Morph1984/version-updateMorph
api_version: Update and add AtmosphereTargetFirmware
2021-09-11kernel: Add missing <functional> includeMorph
2021-09-11file_sys/kernel_executable: Add missing <string> includeMorph
2021-09-11common: Move error handling to error.cpp/hMorph
This allows us to avoid implicitly including <string> every time common_funcs.h is included.
2021-09-11Merge pull request #6846 from ameerj/nvdec-gpu-decodeFernando S
nvdec: Add GPU video decoding for all capable drivers and platforms
2021-09-11Merge pull request #6981 from ameerj/nvflinger-hb-formatFernando S
nvflinger: Use external surface format for framebuffer creation
2021-09-10am: Implement GetNotificationStorageChannelEventgerman77
2021-09-10hid: Stub SetTouchScreenConfigurationgerman77
2021-09-10api_version: Update and add AtmosphereTargetFirmwareMorph
2021-09-09Addressed issuesChloe
Co-authored-by: Mai M. <mathew1800@gmail.com>
2021-09-09Mark is_complete as atomicChloe Marcec
2021-09-09Addressed issuesChloe Marcec
2021-09-08Merge pull request #6971 from bunnei/buffer-queue-keventAmeer J
core: hle: service: buffer_queue: Improve management of KEvent.
2021-09-06nvflinger: Use external surface format for framebuffer creationameerj
The format member the IGBPBuffer may not always specify the correct desired format. Using the external format member ensures a valid format is provided when creating the framebuffer. Fixes homebrew using the wrong framebuffer format.
2021-09-06address name shadowing with systemChloe Marcec
2021-09-06account: EnsureTokenIdCacheAsyncChloe Marcec
Closes #2547, #6946
2021-09-06Merge pull request #6965 from bunnei/cpu_manager_jthreadbunnei
core: cpu_manager: Use jthread.
2021-09-06FS: Recursively create directories for CreateDirectoryChloe Marcec
Originally we only created the parent directory, this caused issues for creating directories which also contained subdirectories, eg `/Folder1/Folder2` This allows the ultimate mod manager homebrew to at least boot
2021-09-04core: hle: service: buffer_queue: Improve management of KEvent.bunnei
2021-09-03core: hle: service: nvflinger/vi: Improve management of KEvent.bunnei
2021-09-03core: cpu_manager: Use jthread.bunnei
2021-08-29Merge pull request #6905 from Morph1984/nifm-miscbunnei
nifm/network_interface: Cleanup and populate fields in GetCurrentNetworkProfile
2021-08-27ngct: Stub NGCT:U servicegerman77
2021-08-27service: nifm: Populate fields in GetCurrentNetworkProfileMorph
Populates the current_address, subnet_mask, and gateway fields from the selected network interface.
2021-08-27service: nifm: Cleanup GetCurrentIpConfigInfoMorph
2021-08-27network_interface: Cleanup codeMorph
2021-08-27network_interface: Replace default return value with std::nulloptMorph
2021-08-25Revert "kernel: Various improvements to scheduler"bunnei
2021-08-24logging: Fix log filter during initializationameerj
The log filter was being ignored on initialization due to the logging instance being initialized before the config instance, so the log filter was set to its default value. This fixes that oversight, along with using descriptive exceptions instead of abort() calls.
2021-08-24Merge pull request #6878 from BreadFish64/optimize-GetHostThreadIDAmeer J
kernel: Optimize GetHostThreadID
2021-08-22Merge pull request #6869 from yzct12345/shiny-logs-in-the-fireplacebunnei
logging: Simplify and make thread-safe
2021-08-19applet_error: Fix 64-bit error code conversionMorph
2021-08-19Fix crash in logging in CreateStrayLayerValeri
It was trying to log value of layer_id which is specifically known not to exist, potentially leading to segfault. Log display_id instead.
2021-08-19Fix check is thread current in GetThreadContextValeri
Misplaced break made it only check for the first core.
2021-08-18Merge pull request #6832 from bunnei/scheduler-improvementsbunnei
kernel: Various improvements to scheduler
2021-08-16configure_graphics: Add GPU nvdec decoding as an optionameerj
Some system configurations may see visual regressions or lower performance using GPU decoding compared to CPU decoding. This setting provides the option for users to specify their decoding preference. Co-Authored-By: yzct12345 <87620833+yzct12345@users.noreply.github.com>
2021-08-16kernel: Optimize GetHostThreadIDBreadFish64
2021-08-16network_interface: correct formattingSönke Holz
2021-08-16network_interface: fix mingw-w64 buildspholz
2021-08-16network: retrieve subnet mask and gateway infoSönke Holz
2021-08-14core: hle: kernel: Disable dispatch count tracking on single core.bunnei
- This would have limited value, and would be a mess to handle properly.
2021-08-13logging: Simplify and make thread-safeyzct12345
This simplifies the logging system. This also fixes some lost messages on startup. The simplification is simple. I removed unused functions and moved most things in the .h to the .cpp. I replaced the unnecessary linked list with its contents laid out as three member variables. Anything that went through the linked list now directly accesses the backends. Generic functions are replaced with those for each specific use case and there aren't many. This change increases coupling but we gain back more KISS and encapsulation. With those changes it was easy to make it thread-safe. I just removed the mutex and turned a boolean atomic. I was planning to use this thread-safety in my next PR about stacktraces. It was actually async-signal-safety at first but I ended up using a different approach. Anyway getting rid of the linked list is important for that because have the list of backends constantly changing complicates things.
2021-08-13network: don't use reinterpret_cast in GetAvailableNetworkInterfacesspholz
2021-08-13network: fix mingw-w64 buildSönke Holz
The header "combaseapi.h" of mingw-w64 defines "interface" as "struct".
2021-08-13network: don't use assert to check if no network interfaces are returnedSönke Holz