summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-023-23/+18
|
* HID: Fix crash when pressing a key when the emulator is stoppedGravatar Yuri Kunde Schlesner2015-02-021-0/+2
|
* SVC: Enable CloseHandle, clean up DuplicateHandleGravatar Yuri Kunde Schlesner2015-02-021-9/+5
|
* 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
| | | | This is to support the removal of GetHandle soon
* Kernel: Remove previous scheduled event when a Timer is re-SetGravatar Yuri Kunde Schlesner2015-02-021-0/+3
|
* FS: Remove use of GetHandleGravatar Yuri Kunde Schlesner2015-02-021-1/+1
|
* Thread: Modernize two functions that slipped through previous rebasesGravatar Yuri Kunde Schlesner2015-02-024-18/+16
|
* Service: Store function names as const char* instead of std::stringGravatar Yuri Kunde Schlesner2015-02-021-6/+6
| | | | | Uses less memory (strings and function table is stored in constant data) and speeds up start up (no need to allocate and copy strings).
* Service: Clean-up InterfaceGravatar Yuri Kunde Schlesner2015-02-0246-67/+54
|
* Make Port/Service registration and querying more HW-accurateGravatar Yuri Kunde Schlesner2015-02-024-106/+80
|
* Filesys: Move creation of Handles for File/Directory to service handlersGravatar Yuri Kunde Schlesner2015-02-023-32/+33
|
* Merge pull request #514 from rohit-n/fix-warningsGravatar bunnei2015-02-011-2/+2
|\ | | | | Silence a few warnings.
| * Silence a few warnings.Gravatar Rohit Nirmal2015-01-301-2/+2
| |
* | Merge pull request #525 from lioncash/armwarnGravatar bunnei2015-02-012-6/+3
|\ \ | | | | | | vfp: Get rid of some compile warnings
| * | vfp: Get rid of some compile warningsGravatar Lioncash2015-01-312-6/+3
| | |
* | | arm: Clean up ARMul_StateGravatar Lioncash2015-01-315-138/+84
|/ / | | | | | | Remove unnecessary/unused struct variables.
* | arm: Adios armemuGravatar Lioncash2015-01-3116-8599/+166
| |
* | Merge pull request #512 from lioncash/assignmentGravatar Tony Wasserka2015-01-312-4/+4
|\ \ | | | | | | shared_memory: Fix assignments in SharedMemory::Map
| * | shared_memory: Fix assignments in SharedMemory::MapGravatar Lioncash2015-01-302-4/+4
| |/
* | dyncom: clean up arm_dyncom_dec.hGravatar Lioncash2015-01-301-43/+2
| |
* | arm: Move headers over to pragma onceGravatar Lioncash2015-01-307-31/+11
| |
* | arm: Get rid of armcpu.h and skyeye_types.hGravatar Lioncash2015-01-306-115/+0
| |
* | arm: Clean out armos.h and armmmu.hGravatar Lioncash2015-01-302-181/+23
| |
* | Merge pull request #513 from lioncash/cleanupGravatar bunnei2015-01-306-1667/+168
|\ \ | | | | | | arm: Cleanup.
| * | arm: Throw out a lot of unnecessary codeGravatar Lioncash2015-01-306-1536/+56
| | |
| * | armdefs: Move some defines over to enumsGravatar Lioncash2015-01-301-131/+112
| |/
* | loader: Add missing printf argumentGravatar Lioncash2015-01-301-1/+1
| |
* | 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
| | | | | 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
| | |