aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
AgeCommit message (Expand)Author
2017-01-11Threads: Check the process' resource limit for the max allowed priority when ...Subv
2017-01-11Thread: Added priority range checking to svcSetThreadPriority and removed pri...Subv
2017-01-10Merge pull request #2397 from Subv/pulsebunnei
2017-01-06Merge pull request #2410 from Subv/sleepthreadbunnei
2017-01-06Merge pull request #2396 from Subv/sema_acquirebunnei
2017-01-06Merge pull request #2408 from Subv/priority_boostingbunnei
2017-01-05Kernel: Don't attempt to yield execution in SleepThread(0) if there are no av...Subv
2017-01-05Kernel: Remove some unused functions.Subv
2017-01-05Kernel: Removed the priority boost code for starved threads.Subv
2017-01-05Kernel: Implemented Pulse event and timers.Subv
2017-01-05Kernel/Semaphore: Fixed a regression in semaphore waits.Subv
2017-01-05Kernel: Add some asserts to enforce the invariants in the scheduler.Subv
2017-01-05Kernel: Remove a thread from all of its waiting objects' waiting_threads list...Subv
2017-01-05Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all th...Subv
2017-01-04Kernel: Use different thread statuses when a thread calls WaitSynchronization...Subv
2017-01-04Kernel/Mutex: Propagate thread priority changes to other threads inheriting t...Subv
2017-01-04Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.Subv
2017-01-04Kernel/Mutex: Implemented priority inheritance.Subv
2017-01-04Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Subv
2017-01-04Kernel/Synch: Do not attempt a reschedule on every syscall.Subv
2016-12-22ThreadContext: Move from "core" to "arm_interface".bunnei
2016-12-22core: Replace "AppCore" nomenclature with just "CPU".bunnei
2016-12-21core: Remove HLE module, consolidate code & various cleanups.bunnei
2016-12-21core: Consolidate core and system state, remove system module & cleanups.bunnei
2016-12-17Thread: remove the thread from the thread list when exitingwwylele
2016-12-16Kernel: remove object's waiting thread if it is deadwwylele
2016-12-16Merge pull request #2260 from Subv/schedulingbunnei
2016-12-14Fixed the codestyle to match our clang-format rules.Subv
2016-12-14Fixed the codestyle to match our clang-format rules.Subv
2016-12-10Properly remove a thread from its wait_objects' waitlist when it is awoken by...Subv
2016-12-09Moved the HLE command buffer translation task to ServerSession instead of the...Subv
2016-12-09WaitSynch: Removed unused variables and reduced SharedPtr copies.Subv
2016-12-08Added a framework for partially handling Session disconnections.Subv
2016-12-08Use std::move where appropriate.Subv
2016-12-06Use boost remove_erase_if instead of the erase-remove idiomSubv
2016-12-06Improved the algorithm for GetHighestPriorityReadyThread.Subv
2016-12-05Return an error code when connecting to a saturated port.Subv
2016-12-05Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, Transl...Subv
2016-12-05Kernel: Remove the Redirection handle type.Subv
2016-12-05KServerPorts now have an HLE handler "template", which is inherited by all Se...Subv
2016-12-04Threading: Added some utility functions and const correctness.Subv
2016-12-03Threading: Reworked the way our scheduler works.Subv
2016-12-02Declare empty ServerSession and ClientSession constructors as default.Subv
2016-11-30Fixed the rebase mistakes.Subv
2016-11-30A bit of a redesign.Subv
2016-11-30IPC/HLE: Associate the ClientSessions with their parent port's HLE interface ...Subv
2016-11-30Kernel/HLE: Service::Interface no longer inherits from any Kernel object, and...Subv
2016-11-30fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block ...Subv
2016-11-30 Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inte...Subv
2016-11-27Merge pull request #2196 from Subv/system_modeYuri Kunde Schlesner