Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-12 | kernel: additional style fixes to KThread, KProcess | Liam | |
2023-03-12 | kernel: fix clang build | Liam | |
2023-03-12 | kernel: remove unnecessary finalize calls | Liam | |
2023-03-12 | kernel: convert KProcess to new style | Liam | |
2023-03-12 | kernel: convert KThread to new style | Liam | |
2023-03-12 | kernel: prefer std::addressof | Liam | |
2023-03-12 | kernel: convert KResourceLimit | Liam | |
2023-03-12 | kernel: remove kernel_ | Liam | |
2023-03-12 | kernel: remove gratitutous attribute usage | Liam | |
2023-03-12 | kernel/svc: convert to new style | Liam | |
2023-03-12 | kernel: convert miscellaneous | Liam | |
2023-03-12 | kernel: conver KScopedLock, KScopedResourceReservation, KSessionRequest, ↵ | Liam | |
KSharedMemory, KSpinLock | |||
2023-03-12 | kernel: convert KAbstractSchedulerLock | Liam | |
2023-03-12 | kernel: convert KMemoryLayout, KMemoryRegion*, KPageTableSlabHeap, ↵ | Liam | |
KPriorityQueue | |||
2023-03-12 | kernel: move KMemoryLayout for NX board | Liam | |
2023-03-12 | kernel: remove KLinkedList | Liam | |
2023-03-12 | kernel: convert KConditionVariable, KLightConditionVariable, KLightLock | Liam | |
2023-03-12 | kernel: convert KPort, KSession | Liam | |
2023-03-12 | kernel: convert GlobalSchedulerContext, KAddressArbiter, ↵ | Liam | |
KScopedSchedulerLockAndSleep, KThreadQueue to new style | |||
2023-03-12 | general: fix spelling mistakes | Liam | |
2023-03-10 | Merge pull request #9923 from liamwhite/kht | liamwhite | |
kernel: add timer pointer to KThreadQueue | |||
2023-03-10 | Merge pull request #9928 from german77/super_nfp | liamwhite | |
service: nfp: Improve implementation | |||
2023-03-10 | Merge pull request #9917 from Morph1984/the-real-time | liamwhite | |
native_clock: Re-adjust the RDTSC frequency to its real frequency | |||
2023-03-09 | service: nfp: Improve implementation | Narr the Reg | |
2023-03-09 | Merge pull request #9916 from liamwhite/fpu | liamwhite | |
kernel: clone fpu status on CreateThread | |||
2023-03-08 | Merge pull request #9912 from liamwhite/err | liamwhite | |
hle: rename legacy errors to Results | |||
2023-03-08 | Merge pull request #9904 from liamwhite/ws | liamwhite | |
kernel: fix WaitSynchronization | |||
2023-03-07 | perf_stats: Check multicore first | Morph | |
SpeedLimiting is SC only. Since MC is performance oriented we should check for it first to skip checking use_speed_limit. | |||
2023-03-07 | Merge pull request #9921 from liamwhite/override | Morph | |
general: fix type inconsistencies | |||
2023-03-07 | hid: Use nanosecond timestamps instead of ticks | Morph | |
2023-03-07 | core: Promote CPU/GPU threads to time critical | Morph | |
And also demote Audren and CoreTiming to High thread priority. | |||
2023-03-07 | kernel: add timer pointer to KThreadQueue | Liam | |
2023-03-07 | general: fix type inconsistencies | Liam | |
2023-03-07 | kernel: avoid signed overflow UB on MSVC | Liam | |
2023-03-07 | kernel: clone fpu status on CreateThread | Liam | |
2023-03-07 | Merge pull request #9889 from Morph1984/time-is-ticking | liamwhite | |
core_timing: Reduce CPU usage on Windows | |||
2023-03-06 | hle: rename legacy errors to Results | Liam | |
2023-03-06 | Merge pull request #9910 from jbeich/libc++ | liamwhite | |
kernel: add missing header for libc++ | |||
2023-03-06 | Merge pull request #9905 from german77/usbssl | liamwhite | |
Service: USB, SSL, PSC: Update | |||
2023-03-06 | kernel: add missing header for libc++ | Jan Beich | |
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)) {} ~~~~~^ | |||
2023-03-05 | service: acc: Replace default image with a 32x32 image | Narr the Reg | |
2023-03-05 | service: psc: Update names | Narr the Reg | |
2023-03-05 | service: ssl: Add missing properties and update names | Narr the Reg | |
2023-03-05 | service: usb: Update names | Narr the Reg | |
2023-03-05 | kernel: fix WaitSynchronization | Liam | |
2023-03-05 | hardware_properties: Update BASE_CLOCK_RATE to exactly 1020 MHz | Morph | |
2023-03-05 | core_timing: Use higher precision sleeps on Windows | Morph | |
The precision of sleep_for and wait_for is limited to 1-1.5ms on Windows. Using SleepForOneTick() allows us to sleep for exactly one interval of the current timer resolution. This allows us to take advantage of systems that have a timer resolution of 0.5ms to reduce CPU overhead in the event loop. | |||
2023-03-03 | Merge pull request #9884 from liamwhite/service-cleanup | Morph | |
service: miscellaneous cleanups | |||
2023-03-01 | kernel: be more careful about kernel address keys | Liam | |
2023-03-01 | kernel: refactor priority inheritance to represent locks as C++ objects | Liam | |