aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle
Commit message (Collapse)AuthorAge
* Thread: Fixed to wait on address when in arbitration.Gravatar bunnei2014-12-08
|
* Make OpenDirectory fail if the directory doesn't existGravatar archshift2014-12-07
| | | | | | | This is in line with what the hardware itself does. It does this by splitting the initial directory opening into Directory.Open(), which will return false if a stat fails. Then, Archive::OpenDirectory will return nullptr, and archive.cpp will return an error code .
* Merge pull request #250 from Subv/cbranch_2Gravatar bunnei2014-12-04
|\ | | | | SVC: Implemented GetThreadId.
* \ Merge pull request #222 from archshift/renamexyzGravatar bunnei2014-12-04
|\ \ | | | | | | Implemented RenameFile and RenameDirectory in FS:USER
* \ \ Merge pull request #248 from lioncash/kernelGravatar bunnei2014-12-04
|\ \ \ | | | | | | | | Misc minor kernel-related changes.
| | | * Threads: Remove a redundant function.Gravatar Subv2014-12-04
| | | | | | | | | | | | | | | | Use the next_thread_id variable directly.
| | | * Threads: Implemented a sequential thread idGravatar Subv2014-12-04
| | | |
| | * | Updated archive.cpp functions for proper error handlingGravatar archshift2014-12-03
| | | |
| | | * SVC: Implemented GetThreadId.Gravatar Subv2014-12-04
| | | | | | | | | | | | | | | | For now threads are using their Handle value as their Id, it should not really cause any problems because Handle values are unique in Citra, but it should be changed. I left a ToDo there because this is not correct behavior as per hardware.
* | | | Merge pull request #247 from lioncash/constGravatar bunnei2014-12-03
|\ \ \ \ | | | | | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease
* \ \ \ \ Merge pull request #238 from archshift/dspGravatar bunnei2014-12-03
|\ \ \ \ \ | | | | | | | | | | | | Add stub for ConvertProcessFromDspDram
| * | | | | Add stub for ConvertProcessFromDspDramGravatar archshift2014-12-03
| | | | | | | | | | | | | | | | | | | | | | | | Should theoretically push retail stuff further along
| | | * | | kernel: Shorten GetCountGravatar Lioncash2014-12-03
| | | | | |
| | | * | | kernel: Make some functions constGravatar Lioncash2014-12-03
| | |/ / / | |/| | |
| | * | | hid_user: Pass by reference with PadButtonPress/PadButtonReleaseGravatar Lioncash2014-12-03
| | | |/ | | |/|
* | / | PTM_U: Added a stub for GetBatteryLevel & GetBatteryChargeState & ↵Gravatar purpasmart962014-12-03
| |/ / |/| | | | | | | | GetAdapterState
* | | Merge pull request #231 from purpasmart96/serv_ac_wifi_statusGravatar bunnei2014-12-03
|\ \ \ | | | | | | | | AC_U: Added a stub for GetWifiStatus
* \ \ \ Merge pull request #219 from Subv/ptmGravatar bunnei2014-12-03
|\ \ \ \ | |_|/ / |/| | | PTM_U: Implemented the GetShellState function.
| | * | AC_U: Added a stub for GetWifiStatusGravatar purpasmart962014-12-02
| | | |
* | | | Merge pull request #224 from bunnei/dsp-service-improvementsGravatar bunnei2014-11-30
|\ \ \ \ | | | | | | | | | | Dsp service improvements
* \ \ \ \ Merge pull request #214 from Subv/masterGravatar bunnei2014-11-30
|\ \ \ \ \ | | | | | | | | | | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString
| | * | | | DSP: Added stubs for several commonly used DSP service functions.Gravatar bunnei2014-11-30
| | | | | |
| | * | | | DSP: Fixed typo in port name.Gravatar bunnei2014-11-30
| | | |/ / | | |/| |
| | | * | PTM_U: Implemented the GetShellState function.Gravatar Subv2014-11-30
| | | | |
* | | | | Merge pull request #225 from bunnei/fix-release-mutexGravatar bunnei2014-11-30
|\ \ \ \ \ | | | | | | | | | | | | Mutex: Changed behavior to always release mutex for all threads.
* \ \ \ \ \ Merge pull request #226 from bunnei/svc-and-thread-fixesGravatar bunnei2014-11-30
|\ \ \ \ \ \ | | | | | | | | | | | | | | Svc and thread fixes
| | | * | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString.Gravatar Subv2014-11-29
| |_|/ / / / |/| | | | |
* | | | | | Fixed formatting and switch statement warningsGravatar vaguilar2014-11-27
| |_|/ / / |/| | | |
| * | | | Thread: Check that thread is actually in "wait state" when verifying wait.Gravatar bunnei2014-11-26
| | | | |
| * | | | SVC: Add debug log to ArbitrateAddress.Gravatar bunnei2014-11-26
| | | | |
| * | | | SVC: SleepThread should yield to the next ready thread.Gravatar bunnei2014-11-26
|/ / / /
| * / / Mutex: Changed behavior to always release mutex for all threads.Gravatar bunnei2014-11-26
|/ / /
| | * Implemented RenameDirectory in FS:USERGravatar archshift2014-11-24
| | |
| | * Implemented RenameFile in FS:USERGravatar archshift2014-11-24
| |/ |/|
* | Use pointers instead of passing handles around in some functions.Gravatar Yuri Kunde Schlesner2014-11-24
| |
* | Remove duplicated docs/update them for changed parameters.Gravatar Yuri Kunde Schlesner2014-11-24
| |
* | HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
* | Merge pull request #191 from archshift/deletexyzGravatar bunnei2014-11-23
|\ \ | |/ |/| Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.
| * Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.Gravatar archshift2014-11-23
| |
* | Add more services and some fixes, along with more "override"Gravatar purpasmart962014-11-20
| | | | | | | | in the service's headers
* | Merge pull request #211 from linkmauve/masterGravatar bunnei2014-11-19
|\ \ | | | | | | Remove trailing spaces from the entire project
* \ \ Merge pull request #208 from lioncash/staticsGravatar bunnei2014-11-19
|\ \ \ | | | | | | | | Add static to some variables
| | * | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-19
| |/ / |/| | | | | | | | or generated
| * | Add static to some variablesGravatar Lioncash2014-11-18
| | |
* | | Remove extraneous semicolonsGravatar Lioncash2014-11-18
|/ /
* / core: Mark some hle functions as staticGravatar Lioncash2014-11-17
|/ | | | These functions are not referred to by their linkage name outside of the translation unit, so they can be marked as static.
* Archive: Fixed to not destroy archive handle on close.Gravatar bunnei2014-11-17
|
* Archive: Fixed close archive before freeing.Gravatar bunnei2014-11-17
|
* FS_User: Support FileSye::Path in a more generic way.Gravatar bunnei2014-11-17
| | | | added a todo to kernel archive
* FileSys: Updated backend code to use FileSys::Path instead of string for paths.Gravatar bunnei2014-11-17
|