summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel (follow)
Commit message (Expand)AuthorAgeFilesLines
* Kernel: Use the correct format string for u64 hex.Gravatar Emmanuel Gil Peyrot2015-04-141-1/+1
* SVC: Update various SVCs to cause a reschedule.Gravatar bunnei2015-04-091-4/+0
* Kernel: Implemented priority inheritance for mutexes.Gravatar bunnei2015-04-093-4/+22
* Thread: Implement priority boost for starved threads.Gravatar bunnei2015-04-092-22/+51
* Kernel: Fixed default thread priority.Gravatar bunnei2015-04-092-5/+4
* Initialize base address to 0x0Gravatar Gareth Higgins2015-04-081-0/+1
* Misc cleanup of common and related functionsGravatar archshift2015-02-191-2/+3
* Build: Fixed some warningsGravatar Subv2015-02-123-4/+4
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-107-15/+13
* Scheduler refactor Pt. 1Gravatar Kevin Hartman2015-02-093-223/+258
* Mutex: Locks should be recursive.Gravatar bunnei2015-02-092-16/+20
* core: Fix some warnings on OSXGravatar Lioncash2015-02-031-1/+0
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-0212-36/+17
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-026-12/+17
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-0216-8/+50
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-023-23/+18
* Kernel: Fix bug in HandleTable::CloseGravatar Yuri Kunde Schlesner2015-02-021-1/+1
* Kernel: Remove Object::GetHandle (it's not used anymore :D)Gravatar Yuri Kunde Schlesner2015-02-022-9/+1
* Kernel: Introduce unique Object ids for debuggingGravatar Yuri Kunde Schlesner2015-02-024-8/+16
* Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner2015-02-024-18/+25
* Kernel: Remove previous scheduled event when a Timer is re-SetGravatar Yuri Kunde Schlesner2015-02-021-0/+3
* Thread: Modernize two functions that slipped through previous rebasesGravatar Yuri Kunde Schlesner2015-02-023-15/+13
* arm: Clean up ARMul_StateGravatar Lioncash2015-01-311-1/+1
* shared_memory: Fix assignments in SharedMemory::MapGravatar Lioncash2015-01-302-4/+4
* Kernel: Mark all appropriate kernel objects as "final"Gravatar Yuri Kunde Schlesner2015-01-307-8/+7
* Remove result.h InvalidHandleGravatar Yuri Kunde Schlesner2015-01-301-1/+2
* Kernel: Convert Event to not use HandlesGravatar Yuri Kunde Schlesner2015-01-302-83/+51
* Kernel: Convert Timer to (mostly) not use HandlesGravatar Yuri Kunde Schlesner2015-01-302-104/+72
* Kernel: Convert Mutex to not use HandlesGravatar Yuri Kunde Schlesner2015-01-302-101/+82
* Kernel: Convert AddressArbiter to not use HandlesGravatar Yuri Kunde Schlesner2015-01-302-32/+31
* Kernel: Convert Semaphore to not use HandlesGravatar Yuri Kunde Schlesner2015-01-302-61/+61
* Kernel: Convert SharedMemory to not use HandlesGravatar Yuri Kunde Schlesner2015-01-302-71/+54
* Move VAddr/PAddr typedefs to kernel.hGravatar Yuri Kunde Schlesner2015-01-301-0/+5
* Kernel: Remove useless/duplicated comments; mark functions staticGravatar Yuri Kunde Schlesner2015-01-306-32/+8
* Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup.Gravatar bunnei2015-01-212-22/+42
* Thread: Use std::find in CheckWait_WaitObject.Gravatar bunnei2015-01-211-4/+5
* Mutex: Cleanup and remove redundant code.Gravatar bunnei2015-01-213-47/+29
* Kernel: Renamed some functions for clarity.Gravatar bunnei2015-01-217-10/+10
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei2015-01-218-64/+39
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...Gravatar bunnei2015-01-218-21/+20
* Event: Fix implementation of "non-sticky" events.Gravatar bunnei2015-01-211-0/+4
* Session: Change to a WaitObject.Gravatar bunnei2015-01-213-2/+9
* Kernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs.Gravatar bunnei2015-01-211-1/+1
* Mutex: Fix a bug where the thread should not wait if it already has the mutex.Gravatar bunnei2015-01-211-1/+4
* Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObj...Gravatar bunnei2015-01-213-18/+57
* AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that mad...Gravatar bunnei2015-01-214-35/+42
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-218-112/+43
* WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-217-54/+49
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-217-14/+54
* WaitSynchronizationN: Implement return valuesGravatar bunnei2015-01-219-56/+139