aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
AgeCommit message (Collapse)Author
2018-01-14shared_memory: Minor fixes and cleanup.bunnei
2018-01-14svc: Implement svcMapSharedMemory.bunnei
2018-01-14kernel: Increase default stack size to 64K.bunnei
2018-01-13yuzu: Update license text to be consistent across project.bunnei
2018-01-11core: Include <algorithm> where used.bunnei
2018-01-11core: Fix recent GCC build breaks.bunnei
2018-01-11svc: Implement GetSystemTick.bunnei
2018-01-10IPC: Corrected some definitions for the buffer C descriptor flags.Subv
2018-01-10svc: Stub ResetSignal and CreateTransferMemorySubv
2018-01-10svc: Stub SetMemoryAttributeSubv
2018-01-10Threads: Added enum values for the Switch's 4 cpu cores and implemented ↵Subv
svcGetInfo(AllowedCpuIdBitmask)
2018-01-09SVC: Fixed WaitSynchronization with multiple handles when none is ↵Subv
immediately ready.
2018-01-09SVC: Implemented CancelSynchronization.Subv
2018-01-09ErrorCodes: Updated the InvalidHandle and Timeout kernel error codes.Subv
2018-01-09SVC: Fixed WaitSynchronization with multiple handles when at least one of ↵Subv
them is ready.
2018-01-08kernel: Rename Semaphore to ConditionVariable.bunnei
2018-01-08mutex: Remove unused call to VerifyGuestState.bunnei
2018-01-08Kernel: Actually wake up the requested number of threads in Semaphore::Release.Subv
Also properly keep track of data in guest memory, this fixes managing the semaphore from userland. It was found that Semaphores are actually Condition Variables, with Release(1) and Release(-1) being equivalent to notify_one and notify_all. We should change the name of the class to reflect this.
2018-01-08Kernel: Properly keep track of mutex lock data in the guest memory. This ↵Subv
fixes userland locking/unlocking.
2018-01-08Kernel: Allow chaining WaitSynchronization calls inside a wakeup callback.Subv
2018-01-08CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)B3n30
* CoreTiming: New CoreTiming; Add Test for CoreTiming
2018-01-07IPC: Add functions to read the input move/copy objects from an IPC request.Subv
2018-01-07IPC: Don't attempt to read the command buffer if it holds a Close request.Subv
2018-01-07IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain ↵Subv
objects in IPC requests. Popping objects from the buffer is still not implemented.
2018-01-07IPC: Skip the entire u64 of the command id when receiving an IPC request.Subv
Service code now doesn't have to deal with this.
2018-01-07IPC: Use the correct size when pushing raw data to the command buffer and ↵Subv
fixed pushing domain objects. Domain object ids are always stored immediately after the raw data.
2018-01-07svc: Implement svcSignalProcessWideKey.bunnei
2018-01-07semaphore: More changes for Switch.bunnei
2018-01-07wait_object: Refactor to allow waking up a single thread.bunnei
2018-01-06svc: Implement svcWaitProcessWideKeyAtomic.bunnei
2018-01-06semaphore: Updates for Switch.bunnei
2018-01-06svc: Implement WaitSynchronization for a single handle.bunnei
2018-01-06svc: Refactor LockMutex code to use WaitSynchronization1.bunnei
2018-01-04svc: Add missing string_util include.bunnei
2018-01-02arm: Remove SkyEye/Dyncom code that is ARMv6-only.bunnei
2018-01-02vm_manager: Use a more reasonable MAX_ADDRESS size.bunnei
2018-01-02svc: Remove unnecessary "svc" prefix to naming scheme.bunnei
2018-01-02hle: Move SVC code to kernel namespace.bunnei
2018-01-01vm_manager: Stub out a bunch of interfaces used by svcGetInfo.bunnei
2018-01-01core/video_core: Fix a bunch of u64 -> u32 warnings.bunnei
2018-01-01svc: Implement svcExitProcess.bunnei
2018-01-01svc: Implement svcLockMutex.bunnei
2018-01-01kernel: Add ObjectAddressTable class.bunnei
2017-12-31thread: Keep track of the initially created handle.bunnei
This is kinda crufty, but we need it for now to update guest state variables.
2017-12-31errors: Define missing kernel error codes.bunnei
2017-12-31svc: Implement svcUnmapMemory.bunnei
2017-12-30thread: Main thread should set thread handle to reg 1.bunnei
2017-12-30thread: Remove THUMB mode flag.bunnei
2017-12-30thread: Main thread should be ready by default, all others dormant.bunnei
2017-12-29kernel: Various 64-bit fixes in memory/process/threadbunnei