aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* citra-qt: Fix horrible scrolling responsiveness in disassembler by giving ↵Gravatar Tony Wasserka2015-02-03
| | | | the uniformRowHeight hint.
* citra-qt: Fix a crash when double-clicking a disassembler list item.Gravatar Tony Wasserka2015-02-03
|
* core: Fix some warnings on OSXGravatar Lioncash2015-02-03
|
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-02
| | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | | | | | | | | | | | During normal operation, a thread waiting on an WaitObject and the object hold mutual references to each other for the duration of the wait. If a process is forcefully terminated (The CTR kernel has a SVC to do this, TerminateProcess, though no equivalent exists for threads.) its threads would also be stopped and destroyed, leaving dangling pointers in the WaitObjects. The solution is to simply have the Thread remove itself from WaitObjects when it is stopped. The vector of Threads in WaitObject has also been changed to hold SharedPtrs, just in case. (Better to have a reference cycle than a crash.)
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
* Mutex: Replace g_mutex_held_locks with a set inside ThreadGravatar Yuri Kunde Schlesner2015-02-02
|
* HID: Fix crash when pressing a key when the emulator is stoppedGravatar Yuri Kunde Schlesner2015-02-02
|
* SVC: Enable CloseHandle, clean up DuplicateHandleGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Fix bug in HandleTable::CloseGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Remove Object::GetHandle (it's not used anymore :D)Gravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Introduce unique Object ids for debuggingGravatar Yuri Kunde Schlesner2015-02-02
|
* Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner2015-02-02
| | | | This is to support the removal of GetHandle soon
* Kernel: Remove previous scheduled event when a Timer is re-SetGravatar Yuri Kunde Schlesner2015-02-02
|
* FS: Remove use of GetHandleGravatar Yuri Kunde Schlesner2015-02-02
|
* Thread: Modernize two functions that slipped through previous rebasesGravatar Yuri Kunde Schlesner2015-02-02
|
* Service: Store function names as const char* instead of std::stringGravatar Yuri Kunde Schlesner2015-02-02
| | | | | 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-02
|
* Make Port/Service registration and querying more HW-accurateGravatar Yuri Kunde Schlesner2015-02-02
|
* Filesys: Move creation of Handles for File/Directory to service handlersGravatar Yuri Kunde Schlesner2015-02-02
|
* Merge pull request #517 from bunnei/blend-factorsGravatar Tony Wasserka2015-02-01
|\ | | | | Pica: Implement blend factors.
* \ Merge pull request #514 from rohit-n/fix-warningsGravatar bunnei2015-02-01
|\ \ | | | | | | Silence a few warnings.
* \ \ Merge pull request #525 from lioncash/armwarnGravatar bunnei2015-02-01
|\ \ \ | | | | | | | | vfp: Get rid of some compile warnings
| * | | vfp: Get rid of some compile warningsGravatar Lioncash2015-01-31
| | | |
* | | | arm: Clean up ARMul_StateGravatar Lioncash2015-01-31
|/ / / | | | | | | | | | Remove unnecessary/unused struct variables.
* | | arm: Adios armemuGravatar Lioncash2015-01-31
| | |
* | | Merge pull request #512 from lioncash/assignmentGravatar Tony Wasserka2015-01-31
|\ \ \ | | | | | | | | shared_memory: Fix assignments in SharedMemory::Map
| | | * Pica: Implement blend factors.Gravatar bunnei2015-01-31
| |_|/ |/| |
* | | dyncom: clean up arm_dyncom_dec.hGravatar Lioncash2015-01-30
| | |
* | | arm: Move headers over to pragma onceGravatar Lioncash2015-01-30
| | |
* | | arm: Get rid of armcpu.h and skyeye_types.hGravatar Lioncash2015-01-30
| | |
* | | arm: Clean out armos.h and armmmu.hGravatar Lioncash2015-01-30
| | |
* | | Merge pull request #513 from lioncash/cleanupGravatar bunnei2015-01-30
|\ \ \ | | | | | | | | arm: Cleanup.
| | | * Silence a few warnings.Gravatar Rohit Nirmal2015-01-30
| | | |
| * | | arm: Throw out a lot of unnecessary codeGravatar Lioncash2015-01-30
| | | |
| * | | armdefs: Move some defines over to enumsGravatar Lioncash2015-01-30
| | |/ | |/|
| | * shared_memory: Fix assignments in SharedMemory::MapGravatar Lioncash2015-01-30
| |/
* | loader: Add missing printf argumentGravatar Lioncash2015-01-30
| |
* | archive: Fix initializer list order for the File class.Gravatar Lioncash2015-01-30
| |
* | apt_u: Fix missing printf specifiersGravatar Lioncash2015-01-30
|/
* Kernel: Mark all appropriate kernel objects as "final"Gravatar Yuri Kunde Schlesner2015-01-30
|
* SVC: Use CASCADE_RESULT in SVC handlersGravatar Yuri Kunde Schlesner2015-01-30
|
* Remove result.h InvalidHandleGravatar Yuri Kunde Schlesner2015-01-30
| | | | | 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-30
|
* Kernel: Convert Event to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* Kernel: Convert Timer to (mostly) not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* Kernel: Convert Mutex to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* Kernel: Convert AddressArbiter to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* Kernel: Convert Semaphore to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* Kernel: Convert SharedMemory to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|