aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle
Commit message (Collapse)AuthorAge
* Merge pull request #552 from bunnei/setbufferswap-fixGravatar bunnei2015-02-10
|\ | | | | GSP SetBufferSwap fix
| * GSP: Call SetBufferSwap for each screen on corresponding signal interrupt.Gravatar bunnei2015-02-10
| |
* | Merge pull request #526 from purpasmart96/citra_stubsGravatar bunnei2015-02-10
|\ \ | | | | | | Services: Stub some functions
* | | PTM: Fixed a problem with the gamecoin PTM file.Gravatar Subv2015-02-10
| | |
* | | Archives: Made the Format function more generic.Gravatar Subv2015-02-10
| | |
* | | Archives: Expose the File and Directory classes to HLEGravatar Subv2015-02-10
| | |
* | | ResultVal: Fixed compilation when reassigning a ResultVal.Gravatar Subv2015-02-10
| | |
* | | FS: Allow multiple instances of the same archive type to be open at onceGravatar Yuri Kunde Schlesner2015-02-10
| | |
* | | FS: Get rid of completely useless Archive classGravatar Yuri Kunde Schlesner2015-02-10
| | |
* | | Scheduler refactor Pt. 1Gravatar Kevin Hartman2015-02-09
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | * Simplifies scheduling logic, specifically regarding thread status. It should be much clearer which statuses are valid for a thread at any given point in the system. * Removes dead code from thread.cpp. * Moves the implementation of resetting a ThreadContext to the corresponding core's implementation. Other changes: * Fixed comments in arm interfaces. * Updated comments in thread.cpp * Removed confusing, useless, functions like MakeReady() and ChangeStatus() from thread.cpp. * Removed stack_size from Thread. In the CTR kernel, the thread's stack would be allocated before thread creation.
* | Mutex: Locks should be recursive.Gravatar bunnei2015-02-09
| |
* | WaitSynch: Always reschedule (verified behavior on hw).Gravatar bunnei2015-02-09
| |
| * Services: Stub some functionsGravatar purpasmart962015-02-07
| |
* | 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
| |
* | arm: Clean up ARMul_StateGravatar Lioncash2015-01-31
| | | | | | | | Remove unnecessary/unused struct variables.
* | Merge pull request #512 from lioncash/assignmentGravatar Tony Wasserka2015-01-31
|\ \ | |/ |/| shared_memory: Fix assignments in SharedMemory::Map
| * shared_memory: Fix assignments in SharedMemory::MapGravatar 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
|
* Additions to ResultVal to make it more convenient to use.Gravatar Yuri Kunde Schlesner2015-01-30
|
* Move VAddr/PAddr typedefs to kernel.hGravatar Yuri Kunde Schlesner2015-01-30
|
* Kernel: Remove useless/duplicated comments; mark functions staticGravatar Yuri Kunde Schlesner2015-01-30
|
* Merge pull request #412 from purpasmart96/svc_table_cleanupGravatar bunnei2015-01-28
|\ | | | | SVC: Update the SVC function table