| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Mutex: Replace g_mutex_held_locks with a set inside Thread | 2015-02-02 | 3 | -23/+18 | |
| | | |||||
| * | HID: Fix crash when pressing a key when the emulator is stopped | 2015-02-02 | 1 | -0/+2 | |
| | | |||||
| * | SVC: Enable CloseHandle, clean up DuplicateHandle | 2015-02-02 | 1 | -9/+5 | |
| | | |||||
| * | Kernel: Fix bug in HandleTable::Close | 2015-02-02 | 1 | -1/+1 | |
| | | |||||
| * | Kernel: Remove Object::GetHandle (it's not used anymore :D) | 2015-02-02 | 2 | -9/+1 | |
| | | |||||
| * | Kernel: Introduce unique Object ids for debugging | 2015-02-02 | 4 | -8/+16 | |
| | | |||||
| * | Kernel: Use separate Handle tables for CoreTiming userdata | 2015-02-02 | 4 | -18/+25 | |
| | | | | | This is to support the removal of GetHandle soon | ||||
| * | Kernel: Remove previous scheduled event when a Timer is re-Set | 2015-02-02 | 1 | -0/+3 | |
| | | |||||
| * | FS: Remove use of GetHandle | 2015-02-02 | 1 | -1/+1 | |
| | | |||||
| * | Thread: Modernize two functions that slipped through previous rebases | 2015-02-02 | 4 | -18/+16 | |
| | | |||||
| * | Service: Store function names as const char* instead of std::string | 2015-02-02 | 1 | -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 Interface | 2015-02-02 | 46 | -67/+54 | |
| | | |||||
| * | Make Port/Service registration and querying more HW-accurate | 2015-02-02 | 4 | -106/+80 | |
| | | |||||
| * | Filesys: Move creation of Handles for File/Directory to service handlers | 2015-02-02 | 3 | -32/+33 | |
| | | |||||
| * | Merge pull request #514 from rohit-n/fix-warnings | 2015-02-01 | 1 | -2/+2 | |
| |\ | | | | | Silence a few warnings. | ||||
| | * | Silence a few warnings. | 2015-01-30 | 1 | -2/+2 | |
| | | | |||||
| * | | Merge pull request #525 from lioncash/armwarn | 2015-02-01 | 2 | -6/+3 | |
| |\ \ | | | | | | | vfp: Get rid of some compile warnings | ||||
| | * | | vfp: Get rid of some compile warnings | 2015-01-31 | 2 | -6/+3 | |
| | | | | |||||
| * | | | arm: Clean up ARMul_State | 2015-01-31 | 5 | -138/+84 | |
| |/ / | | | | | | | Remove unnecessary/unused struct variables. | ||||
| * | | arm: Adios armemu | 2015-01-31 | 16 | -8599/+166 | |
| | | | |||||
| * | | Merge pull request #512 from lioncash/assignment | 2015-01-31 | 2 | -4/+4 | |
| |\ \ | | | | | | | shared_memory: Fix assignments in SharedMemory::Map | ||||
| | * | | shared_memory: Fix assignments in SharedMemory::Map | 2015-01-30 | 2 | -4/+4 | |
| | |/ | |||||
| * | | dyncom: clean up arm_dyncom_dec.h | 2015-01-30 | 1 | -43/+2 | |
| | | | |||||
| * | | arm: Move headers over to pragma once | 2015-01-30 | 7 | -31/+11 | |
| | | | |||||
| * | | arm: Get rid of armcpu.h and skyeye_types.h | 2015-01-30 | 6 | -115/+0 | |
| | | | |||||
| * | | arm: Clean out armos.h and armmmu.h | 2015-01-30 | 2 | -181/+23 | |
| | | | |||||
| * | | Merge pull request #513 from lioncash/cleanup | 2015-01-30 | 6 | -1667/+168 | |
| |\ \ | | | | | | | arm: Cleanup. | ||||
| | * | | arm: Throw out a lot of unnecessary code | 2015-01-30 | 6 | -1536/+56 | |
| | | | | |||||
| | * | | armdefs: Move some defines over to enums | 2015-01-30 | 1 | -131/+112 | |
| | |/ | |||||
| * | | loader: Add missing printf argument | 2015-01-30 | 1 | -1/+1 | |
| | | | |||||
| * | | archive: Fix initializer list order for the File class. | 2015-01-30 | 1 | -1/+1 | |
| | | | |||||
| * | | apt_u: Fix missing printf specifiers | 2015-01-30 | 1 | -2/+2 | |
| |/ | |||||
| * | Kernel: Mark all appropriate kernel objects as "final" | 2015-01-30 | 7 | -8/+7 | |
| | | |||||
| * | SVC: Use CASCADE_RESULT in SVC handlers | 2015-01-30 | 2 | -77/+32 | |
| | | |||||
| * | Remove result.h InvalidHandle | 2015-01-30 | 4 | -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 ResultCode | 2015-01-30 | 2 | -132/+127 | |
| | | |||||
| * | Kernel: Convert Event to not use Handles | 2015-01-30 | 10 | -152/+151 | |
| | | |||||
| * | Kernel: Convert Timer to (mostly) not use Handles | 2015-01-30 | 3 | -111/+112 | |
| | | |||||
| * | Kernel: Convert Mutex to not use Handles | 2015-01-30 | 5 | -114/+110 | |
| | | |||||
| * | Kernel: Convert AddressArbiter to not use Handles | 2015-01-30 | 3 | -38/+55 | |
| | | |||||
| * | Kernel: Convert Semaphore to not use Handles | 2015-01-30 | 3 | -67/+88 | |
| | | |||||
| * | Kernel: Convert SharedMemory to not use Handles | 2015-01-30 | 8 | -102/+107 | |
| | | |||||
| * | Additions to ResultVal to make it more convenient to use. | 2015-01-30 | 1 | -1/+25 | |
| | | |||||
| * | Move VAddr/PAddr typedefs to kernel.h | 2015-01-30 | 2 | -9/+7 | |
| | | |||||
| * | Kernel: Remove useless/duplicated comments; mark functions static | 2015-01-30 | 6 | -32/+8 | |
| | | |||||
| * | Merge pull request #412 from purpasmart96/svc_table_cleanup | 2015-01-28 | 1 | -7/+7 | |
| |\ | | | | | SVC: Update the SVC function table | ||||
| | * | SVC: Update the SVC function table | 2015-01-26 | 1 | -7/+7 | |
| | | | |||||
| * | | dyncom: Minor cleanup | 2015-01-27 | 1 | -126/+137 | |
| | | | | | | | | | Narrow scopes for the instruction variables. Remove unnecessary parentheses. | ||||
| * | | Merge pull request #345 from purpasmart96/apt_stubs | 2015-01-26 | 1 | -91/+276 | |
| |\ \ | | | | | | | APT_U: Stub some functions & misc changes | ||||
| | * | | APT_U: Stub some functions & misc changes | 2015-01-22 | 1 | -91/+276 | |
| | | | | |||||