summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel (follow)
Commit message (Expand)AuthorAgeFilesLines
* core: Prune redundant includesGravatar archshift2014-09-083-6/+0
* Threading: Fix thread starting to execute first instruction correctly.Gravatar bunnei2014-08-281-0/+5
* Added FS functions to Archive and Archive_RomFSGravatar archshift2014-08-221-3/+31
* Core: Use std::array for managing kernel object spaceGravatar Lioncash2014-08-192-5/+5
* Core: Alter the kernel string functions to use std::string instead of const c...Gravatar Lioncash2014-08-178-25/+22
* Thread: Added more descriptive comment to WaitCurrentThread.Gravatar bunnei2014-08-062-2/+10
* AddressArbiter: Removed unnecessary HLE::Reschedule.Gravatar bunnei2014-08-051-1/+0
* AddressArbiter: Fixed bug with break statements missing from case statements.Gravatar bunnei2014-08-051-0/+2
* Kernel: Updated Event and Mutex to specify handle that they are blocking for.Gravatar bunnei2014-08-052-2/+2
* Kernel: Added preliminary support for address arbiters.Gravatar bunnei2014-07-083-1/+124
* Thread: Added functions to resume threads from address arbitration.Gravatar bunnei2014-07-082-0/+44
* SharedMemory: Updated MapSharedMemory to use an enum for permissions.Gravatar bunnei2014-07-052-6/+27
* Kernel: Added support for shared memory objects.Gravatar bunnei2014-07-052-0/+132
* Archive: Added Init/Shutdown methods to reset kernel archive state.Gravatar bunnei2014-07-043-0/+19
* FileSys: Added preliminary support for applications reading the RomFS archive.Gravatar bunnei2014-07-042-10/+105
* Kernel: Added stubbed code to support creation of kernel Archive objects.Gravatar bunnei2014-06-273-0/+85
* Kernel: Removed unnecessary "#pragma once".Gravatar bunnei2014-06-131-2/+0
* Kernel: Added freeing of kernel objects on emulator shutdown.Gravatar bunnei2014-06-132-0/+10
* Event: Updated several log messages to be assertions.Gravatar bunnei2014-06-131-16/+8
* Thread: Renamed occurrences of "t" to "thread" to improve readability.Gravatar bunnei2014-06-131-48/+45
* Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessar...Gravatar bunnei2014-06-131-9/+7
* HLE: Removed usnused EatCycles function.Gravatar bunnei2014-06-131-9/+0
* Thread: Moved position of * in arguments.Gravatar bunnei2014-06-131-2/+2
* Thread: Updated VerifyWait to be more readable (but functionally the same).Gravatar bunnei2014-06-131-4/+3
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-133-9/+9
* Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-134-6/+6
* HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-132-3/+3
* Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.Gravatar bunnei2014-06-131-2/+1
* Kernel: Updated several member functions to be constGravatar bunnei2014-06-134-11/+11
* Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrec...Gravatar bunnei2014-06-131-1/+1
* Kernel: Made SyncRequest not pure virtual, with a default implementation of e...Gravatar bunnei2014-06-133-23/+4
* Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-135-48/+165
* kernel: changed current default thread priority back to 0x30 - I think this i...Gravatar bunnei2014-06-051-1/+1
* svc: added optional name field to Event and Mutex (used for debugging)Gravatar bunnei2014-06-024-8/+21
* kernel: moved position of * for GetTypeName and GetNameGravatar bunnei2014-06-021-2/+2
* svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic...Gravatar bunnei2014-06-012-0/+51
* kernel: changed main thread priority to default, updated Kernel::Reschedule t...Gravatar bunnei2014-06-013-4/+6
* thread: updated Reschedule to sit at a synchronization barrier when no other ...Gravatar bunnei2014-06-011-0/+18
* event: added a hackish ability to set an event as "locked" to its current sta...Gravatar bunnei2014-06-012-4/+32
* mutex: fixed typo in ReleaseMutexGravatar bunnei2014-05-291-1/+3
* event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some...Gravatar bunnei2014-05-292-9/+14
* mutex: added preliminary SyncRequest/WaitSynchronization, added some comments...Gravatar bunnei2014-05-271-0/+6
* event: fixed typos and updated CMakeListsGravatar bunnei2014-05-271-1/+1
* event: added SetEventLocked method to change status an events lockGravatar bunnei2014-05-272-0/+18
* kernel: added event module to support creation of CTR "Event" objectsGravatar bunnei2014-05-272-0/+119
* mutex: removed docstring comment that is no longer relevantGravatar bunnei2014-05-261-1/+0
* mutex: added additional docstringsGravatar bunnei2014-05-261-0/+2
* kernel: added WaitSynchronization method to Kernel::ObjectGravatar bunnei2014-05-263-0/+29
* kernel: updated SyncRequest to take boolean thread wait result as a parameterGravatar bunnei2014-05-263-5/+20
* kernel: added enum for known CurrentThread and CurrentProcess handlesGravatar bunnei2014-05-261-0/+5