summaryrefslogtreecommitdiff
path: root/src/core/hle (follow)
Commit message (Expand)AuthorAgeFilesLines
* archive: Fix initializer list order for the File class.Gravatar Lioncash2015-01-301-1/+1
* apt_u: Fix missing printf specifiersGravatar Lioncash2015-01-301-2/+2
* Kernel: Mark all appropriate kernel objects as "final"Gravatar Yuri Kunde Schlesner2015-01-307-8/+7
* SVC: Use CASCADE_RESULT in SVC handlersGravatar Yuri Kunde Schlesner2015-01-302-77/+32
* Remove result.h InvalidHandleGravatar Yuri Kunde Schlesner2015-01-304-30/+32
* SVC: Change return type of handlers to ResultCodeGravatar Yuri Kunde Schlesner2015-01-302-132/+127
* Kernel: Convert Event to not use HandlesGravatar Yuri Kunde Schlesner2015-01-3010-152/+151
* Kernel: Convert Timer to (mostly) not use HandlesGravatar Yuri Kunde Schlesner2015-01-303-111/+112
* Kernel: Convert Mutex to not use HandlesGravatar Yuri Kunde Schlesner2015-01-305-114/+110
* Kernel: Convert AddressArbiter to not use HandlesGravatar Yuri Kunde Schlesner2015-01-303-38/+55
* Kernel: Convert Semaphore to not use HandlesGravatar Yuri Kunde Schlesner2015-01-303-67/+88
* Kernel: Convert SharedMemory to not use HandlesGravatar Yuri Kunde Schlesner2015-01-308-102/+107
* Additions to ResultVal to make it more convenient to use.Gravatar Yuri Kunde Schlesner2015-01-301-1/+25
* 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
* Merge pull request #412 from purpasmart96/svc_table_cleanupGravatar bunnei2015-01-281-7/+7
|\
| * SVC: Update the SVC function tableGravatar purpasmart962015-01-261-7/+7
* | Merge pull request #345 from purpasmart96/apt_stubsGravatar bunnei2015-01-261-91/+276
|\ \
| * | APT_U: Stub some functions & misc changesGravatar purpasmart962015-01-221-91/+276
* | | Merge pull request #485 from Subv/more_servsGravatar bunnei2015-01-2518-1/+393
|\ \ \
| * | | Services/HID: Removed some files due to a rebase errorGravatar Subv2015-01-243-267/+0
| * | | Services: Stubbed more services.Gravatar Subv2015-01-2421-1/+660
* | | | cam_u.h: fix indentationGravatar archshift2015-01-221-2/+2
|/ / /
* | | Merge pull request #493 from archshift/ptmplayGravatar bunnei2015-01-225-0/+102
|\ \ \
| * | | Stubbed cam:u serviceGravatar archshift2015-01-213-0/+49
| * | | Stubbed ptm:play serviceGravatar archshift2015-01-213-0/+53
* | | | WaitSynchronization: Added a result code for invalid result, fixed bug.Gravatar bunnei2015-01-211-3/+9
* | | | Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup.Gravatar bunnei2015-01-213-25/+45
* | | | 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-219-71/+42
* | | | WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...Gravatar bunnei2015-01-219-23/+22
* | | | 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-212-1/+2
* | | | 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-214-20/+59
* | | | SVC: Removed a Sleep that made no senseGravatar bunnei2015-01-211-6/+1
* | | | AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that mad...Gravatar bunnei2015-01-215-38/+45
* | | | Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-219-122/+63
* | | | WaitSynchronizationN: Improved commentsGravatar bunnei2015-01-211-7/+12
* | | | WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-218-79/+76
* | | | Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-218-18/+59
* | | | WaitSynchronizationN: Handle case where handles=nullptr.Gravatar bunnei2015-01-211-0/+4
* | | | WaitSynchronizationN: Handle case where handle_count is invalid.Gravatar bunnei2015-01-211-3/+7
* | | | WaitSynchronizationN: Handle case where handle_count=0.Gravatar bunnei2015-01-211-19/+29
* | | | WaitSynchronizationN: Implement return valuesGravatar bunnei2015-01-2110-83/+189
* | | | Event: Fixed some bugs and cleanup (Subv)Gravatar bunnei2015-01-214-57/+16
* | | | Thread: Keep track of multiple wait objects.Gravatar bunnei2015-01-213-16/+30