summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* SVC: Fixed ArbitrateAddress to behave as it does on hardware.Gravatar Subv2015-12-271-1/+1
* Kernel: Implement svcGetSystemInfoGravatar Yuri Kunde Schlesner2015-11-301-0/+3
* Silence -Wsign-compare warnings.Gravatar Rohit Nirmal2015-10-061-1/+1
* Kernel: Implement svcGetProcessInfo in a basic wayGravatar Yuri Kunde Schlesner2015-08-161-1/+3
* dyncom: Rename armdefs.h to armstate.hGravatar Lioncash2015-07-251-1/+1
* Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled.Gravatar Subv2015-07-201-0/+8
* Ensure all kernel objects are released during shutdownGravatar Yuri Kunde Schlesner2015-07-171-7/+14
* kernel: Fix svcWaitSynch to always acquire requested wait objects.Gravatar bunnei2015-06-161-50/+26
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-291-4/+4
* Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.Gravatar bunnei2015-05-201-0/+6
* Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-151-1/+1
* thread: Fix a conditional check in RescheduleGravatar Lioncash2015-05-141-1/+1
* Merge pull request #748 from Subv/tls_maxGravatar bunnei2015-05-111-6/+15
|\
| * Core/Memory: Add TLS support for creating up to 300 threadsGravatar Subv2015-05-111-6/+15
* | Merge pull request #751 from yuriks/idle-threadGravatar bunnei2015-05-111-27/+19
|\ \
| * | Thread: Remove the idle threadGravatar Yuri Kunde Schlesner2015-05-111-27/+19
* | | Merge pull request #757 from Subv/schedulingGravatar bunnei2015-05-111-0/+2
|\ \ \ | |_|/ |/| |
| * | Core/Scheduling: Prepare the new priority in the thread queue when svcSetPrio...Gravatar Subv2015-05-111-0/+2
| |/
* | Merge pull request #750 from Subv/process_svcGravatar Yuri Kunde Schlesner2015-05-111-0/+2
|\ \ | |/ |/|
| * Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThreadGravatar Subv2015-05-111-0/+2
* | Thread: Correctly set main thread initial stack positionGravatar Yuri Kunde Schlesner2015-05-111-2/+2
|/
* fixup! Set the TLS address in the schedulerGravatar Subv2015-05-101-2/+5
* Core/Memory: Give every emulated thread it's own TLS area.Gravatar Subv2015-05-101-1/+9
* Memory: Re-organize and rename memory area address constantsGravatar Yuri Kunde Schlesner2015-05-091-2/+3
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-071-1/+3
* Kernel: Properly initialize and shutdown all modules.Gravatar bunnei2015-05-011-2/+8
* Kernel: Implemented priority inheritance for mutexes.Gravatar bunnei2015-04-091-3/+7
* Thread: Implement priority boost for starved threads.Gravatar bunnei2015-04-091-12/+36
* Misc cleanup of common and related functionsGravatar archshift2015-02-191-2/+3
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-101-8/+6
* Scheduler refactor Pt. 1Gravatar Kevin Hartman2015-02-091-185/+175
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-021-8/+0
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-021-0/+3
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-021-2/+2
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-021-0/+3
* Kernel: Introduce unique Object ids for debuggingGravatar Yuri Kunde Schlesner2015-02-021-5/+5
* Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner2015-02-021-11/+11
* Thread: Modernize two functions that slipped through previous rebasesGravatar Yuri Kunde Schlesner2015-02-021-5/+4
* arm: Clean up ARMul_StateGravatar Lioncash2015-01-311-1/+1
* Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup.Gravatar bunnei2015-01-211-15/+28
* Thread: Use std::find in CheckWait_WaitObject.Gravatar bunnei2015-01-211-4/+5
* Mutex: Cleanup and remove redundant code.Gravatar bunnei2015-01-211-1/+1
* Kernel: Renamed some functions for clarity.Gravatar bunnei2015-01-211-1/+1
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei2015-01-211-7/+5
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...Gravatar bunnei2015-01-211-2/+2
* Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObj...Gravatar bunnei2015-01-211-1/+1
* AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that mad...Gravatar bunnei2015-01-211-17/+25
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-211-46/+19
* WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-211-33/+28
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-211-1/+5