summaryrefslogtreecommitdiff
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 #517 from bunnei/blend-factorsGravatar Tony Wasserka2015-02-012-10/+67
|\ | | | | Pica: Implement blend factors.
| * Pica: Implement blend factors.Gravatar bunnei2015-01-312-10/+67
| |
* | Merge pull request #514 from rohit-n/fix-warningsGravatar bunnei2015-02-013-5/+5
|\ \ | | | | | | Silence a few warnings.
| * | Silence a few warnings.Gravatar Rohit Nirmal2015-01-303-5/+5
| | |
* | | 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
| | | |
* | | | Merge pull request #524 from lioncash/stateGravatar bunnei2015-02-015-138/+84
|\ \ \ \ | |/ / / |/| | | arm: Clean up ARMul_State
| * | | arm: Clean up ARMul_StateGravatar Lioncash2015-01-315-138/+84
|/ / / | | | | | | | | | Remove unnecessary/unused struct variables.
* | | Merge pull request #522 from lioncash/adiosGravatar bunnei2015-01-3119-8603/+166
|\ \ \ | | | | | | | | arm: Adios armemu
| * | | arm: Adios armemuGravatar Lioncash2015-01-3119-8603/+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
| |/
* | Merge pull request #516 from lioncash/cleanupGravatar bunnei2015-01-3014-370/+36
|\ \ | | | | | | ARM: More cleanup.
| * | 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
| |/
* | Merge pull request #511 from lioncash/warningsGravatar bunnei2015-01-303-4/+4
|\ \ | |/ |/| Fix a few warnings.
| * 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
|/
* Merge pull request #503 from yuriks/kernel-lifetime4Gravatar Tony Wasserka2015-01-3029-734/+728
|\ | | | | Kernel Lifetime Reform Pt. 4
| * 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
| |
| * Common: Fix SCOPE_EXIT to actually create unique identifiers.Gravatar Yuri Kunde Schlesner2015-01-302-1/+7
| |