summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #2971 from Subv/per_process_memopsGravatar Sebastian Valle2017-10-011-0/+6
|\
| * Kernel/Thread: Added a helper function to get a thread's command buffer VAddr.Gravatar Subv2017-10-011-0/+6
* | Merge pull request #2967 from Subv/thread_wakeup_callbacksGravatar Sebastian Valle2017-09-301-3/+10
|\ \ | |/ |/|
| * Kernel/Threads: When putting a thread to wait, specify a function to execute ...Gravatar Subv2017-09-281-3/+10
* | Fixed type conversion ambiguityGravatar Huw Pascoe2017-09-301-9/+9
* | Kernel/Thread: Allow specifying which process a thread belongs to when creati...Gravatar Subv2017-09-261-8/+9
|/
* memory: Add GetCurrentPageTable/SetCurrentPageTableGravatar MerryMage2017-09-241-7/+4
* Merge pull request #2842 from Subv/switchable_page_tableGravatar B3n302017-09-151-0/+12
|\
| * Kernel/Threads: Don't clear the CPU instruction cache when performing a conte...Gravatar Subv2017-09-151-1/+3
| * Kernel/Memory: Switch the current page table when a new process is scheduled.Gravatar Subv2017-09-101-0/+10
* | Kernel/Threads: Don't immediately switch to the new main thread when loading ...Gravatar Subv2017-08-211-5/+1
|/
* ResultVal: Remove MoveFrom()Gravatar Yuri Kunde Schlesner2017-06-181-2/+2
* Kernel: Move HandleTable to a separate fileGravatar Yuri Kunde Schlesner2017-05-291-0/+1
* Kernel: Centralize error definitions in errors.hGravatar Yuri Kunde Schlesner2017-05-241-8/+16
* Threads: Check the process' resource limit for the max allowed priority when ...Gravatar Subv2017-01-111-8/+2
* Thread: Added priority range checking to svcSetThreadPriority and removed pri...Gravatar Subv2017-01-111-18/+2
* Merge pull request #2410 from Subv/sleepthreadGravatar bunnei2017-01-061-0/+4
|\
| * Kernel: Don't attempt to yield execution in SleepThread(0) if there are no av...Gravatar Subv2017-01-051-0/+4
* | Merge pull request #2408 from Subv/priority_boostingGravatar bunnei2017-01-061-27/+0
|\ \
| * | Kernel: Removed the priority boost code for starved threads.Gravatar Subv2017-01-051-27/+0
| |/
* / Kernel: Remove some unused functions.Gravatar Subv2017-01-051-23/+0
|/
* Kernel: Add some asserts to enforce the invariants in the scheduler.Gravatar Subv2017-01-051-2/+5
* Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all th...Gravatar Subv2017-01-051-0/+5
* Kernel: Use different thread statuses when a thread calls WaitSynchronization...Gravatar Subv2017-01-041-4/+7
* Kernel/Mutex: Propagate thread priority changes to other threads inheriting t...Gravatar Subv2017-01-041-4/+17
* Kernel/Mutex: Implemented priority inheritance.Gravatar Subv2017-01-041-3/+3
* Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Gravatar Subv2017-01-041-3/+3
* ThreadContext: Move from "core" to "arm_interface".Gravatar bunnei2016-12-221-3/+3
* core: Replace "AppCore" nomenclature with just "CPU".Gravatar bunnei2016-12-221-3/+3
* core: Remove HLE module, consolidate code & various cleanups.Gravatar bunnei2016-12-211-4/+1
* core: Consolidate core and system state, remove system module & cleanups.Gravatar bunnei2016-12-211-3/+3
* Thread: remove the thread from the thread list when exitingGravatar wwylele2016-12-171-2/+9
* Properly remove a thread from its wait_objects' waitlist when it is awoken by...Gravatar Subv2016-12-101-0/+4
* Threading: Reworked the way our scheduler works.Gravatar Subv2016-12-031-94/+3
* Fix typosGravatar Ricardo de Almeida Gonzaga2016-10-201-1/+1
* implement wait tree widgetGravatar wwylele2016-09-221-0/+4
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-211-1/+1
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-211-3/+1
* Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner2016-09-181-4/+2
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-181-49/+65
* arm: ResetContext shouldn't be part of ARM_Interface.Gravatar bunnei2016-09-151-1/+17
* Merge pull request #1869 from wwylele/dont-be-lazyGravatar Yuri Kunde Schlesner2016-06-281-2/+6
|\
| * Switch context on the same thread if necessaryGravatar wwylele2016-05-301-2/+6
* | Thread: update timeout when rerunning WaitSynchGravatar wwylele2016-06-041-0/+49
|/
* Kernel/Thread: Remove use of Memory::GetPointerGravatar MerryMage2016-05-211-1/+1
* Set fpscr for new threadsGravatar Jannik Vogel2016-05-171-0/+2
* Merge pull request #1695 from Subv/tls_allocGravatar bunnei2016-05-121-17/+67
|\
| * Kernel/Threads: Dynamically allocate the TLS region for threads in the BASE r...Gravatar Subv2016-05-071-17/+67
* | hle: Get rid of global access to g_rescheduleGravatar Lioncash2016-03-211-1/+2
|/
* SVC: Fixed ArbitrateAddress to behave as it does on hardware.Gravatar Subv2015-12-271-1/+1