summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | 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
| | | | | | | | | | It was only being used in two places, where it was replaced by a local constant.
* | 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-302-9/+7
| |
* | 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 table
| * | SVC: Update the SVC function tableGravatar purpasmart962015-01-261-7/+7
| | |
* | | dyncom: Minor cleanupGravatar Lioncash2015-01-271-126/+137
| | | | | | | | | | | | Narrow scopes for the instruction variables. Remove unnecessary parentheses.
* | | Merge pull request #345 from purpasmart96/apt_stubsGravatar bunnei2015-01-261-91/+276
|\ \ \ | | | | | | | | APT_U: Stub some functions & misc changes
| * | | APT_U: Stub some functions & misc changesGravatar purpasmart962015-01-221-91/+276
| | | |
* | | | Update vfp.cppGravatar bunnei2015-01-261-1/+1
| | | | | | | | | | | | VFP: Changed a debug log to trace.
* | | | Merge pull request #485 from Subv/more_servsGravatar bunnei2015-01-2521-3/+426
|\ \ \ \ | | | | | | | | | | Services: Stubbed more services.
| * | | | Services/HID: Removed some files due to a rebase errorGravatar Subv2015-01-243-267/+0
| | | | |
| * | | | Services: Stubbed more services.Gravatar Subv2015-01-2424-3/+693
| | | | | | | | | | | | | | | | | | | | Implemented FSUser::CreateExtSaveData
* | | | | Merge pull request #410 from chinhodado/cleanupGravatar bunnei2015-01-245-483/+157
|\ \ \ \ \ | | | | | | | | | | | | Cleanup: Logging in Core
| * | | | | Cleanup: Logging in CoreGravatar Chin2015-01-195-483/+157
| | | | | |
* | | | | | vfp: Clean up vertical alignment for instructionsGravatar Lioncash2015-01-231-131/+125
| | | | | |
* | | | | | cam_u.h: fix indentationGravatar archshift2015-01-221-2/+2
| |/ / / / |/| | | | | | | | | Withholding my profanity towards Xcode.
* | | | | Merge pull request #493 from archshift/ptmplayGravatar bunnei2015-01-226-0/+106
|\ \ \ \ \ | | | | | | | | | | | | Stubbed some services
| * | | | | Stubbed cam:u serviceGravatar archshift2015-01-214-0/+51
| | | | | |
| * | | | | Stubbed ptm:play serviceGravatar archshift2015-01-214-0/+55
| | | | | |
* | | | | | dyncom: Minor cleanupGravatar Lioncash2015-01-221-282/+270
| | | | | | | | | | | | | | | | | | | | | | | | Removes some unused macros and cleans up indentation inconsistencies
* | | | | | 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
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - ReleaseNextThread->WakeupNextThread - ReleaseAllWaitingThreads->WakeupAllWaitingThreads.
* | | | | | 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" ↵Gravatar bunnei2015-01-219-23/+22
| | | | | | | | | | | | | | | | | | | | | | | | pure virtual.
* | | | | | 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 ↵Gravatar bunnei2015-01-214-20/+59
| | | | | | | | | | | | | | | | | | | | | | | | WaitObject safely.
* | | | | | SVC: Removed a Sleep that made no senseGravatar bunnei2015-01-211-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Would deadlock the calling thread - Code would never get hit anyways
* | | | | | AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that ↵Gravatar bunnei2015-01-215-38/+45
| | | | | | | | | | | | | | | | | | | | | | | | made no sense.
* | | | | | 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
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Separate wait checking from waiting the current thread - Resume thread when wait_all=true only if all objects are available at once - Set output to correct wait object index when there are duplicate handles
* | | | | | 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
| | | | | |