summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-12-04SVC: Implemented GetThreadId.Subv
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.
2014-12-03Merge pull request #236 from rohit-n/sign-comparebunnei
Silence a few -Wsign-compare warnings.
2014-12-03Merge pull request #231 from purpasmart96/serv_ac_wifi_statusbunnei
AC_U: Added a stub for GetWifiStatus
2014-12-03Merge pull request #219 from Subv/ptmbunnei
PTM_U: Implemented the GetShellState function.
2014-12-02AC_U: Added a stub for GetWifiStatuspurpasmart96
2014-11-30Silence a few -Wsign-compare warnings.Rohit Nirmal
2014-11-30Merge pull request #237 from vaguilar/fix-viewportbunnei
Fixed viewport error caused by rounding
2014-11-30Merge pull request #224 from bunnei/dsp-service-improvementsbunnei
Dsp service improvements
2014-11-30Merge pull request #214 from Subv/masterbunnei
CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString
2014-11-30Merge pull request #196 from archshift/settingsbunnei
Merge Config::ReadXYZs
2014-11-30DSP: Added stubs for several commonly used DSP service functions.bunnei
2014-11-30DSP: Fixed typo in port name.bunnei
2014-11-30PTM_U: Implemented the GetShellState function.Subv
2014-11-30Fixed viewport error caused by roundingvaguilar
2014-11-30Merge pull request #225 from bunnei/fix-release-mutexbunnei
Mutex: Changed behavior to always release mutex for all threads.
2014-11-30Merge pull request #226 from bunnei/svc-and-thread-fixesbunnei
Svc and thread fixes
2014-11-30Merge pull request #228 from linkmauve/glfw-errorbunnei
GLFW: Add an error callback before calling glfwInit()
2014-11-30Merge pull request #235 from yuriks/dyncom-mapbunnei
dyncom: Use unordered_map rather than the terrible 2-level bb_map
2014-11-29CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString.Subv
2014-11-29GLFW: Add an error callback before calling glfwInit()Emmanuel Gil Peyrot
It will print a message to know what happened in case something went wrong in a GLFW call. Also replace every printf() in the glfw emu-window by ERROR_LOG().
2014-11-29dyncom: Use unordered_map rather than the terrible 2-level bb_mapYuri Kunde Schlesner
Seems (probably just placebo/wishful thinking) to make it slightly faster. Also reduces memory usage and makes shutdown when debugging from MSVC fast.
2014-11-29arm_dyncom_interpreter: Get rid of unused var warningsLioncash
2014-11-27Fixed formatting and switch statement warningsvaguilar
2014-11-26Thread: Check that thread is actually in "wait state" when verifying wait.bunnei
2014-11-26SVC: Add debug log to ArbitrateAddress.bunnei
2014-11-26SVC: SleepThread should yield to the next ready thread.bunnei
2014-11-26Mutex: Changed behavior to always release mutex for all threads.bunnei
2014-11-25Remove unused includes to common/thread.hEmmanuel Gil Peyrot
2014-11-24Use pointers instead of passing handles around in some functions.Yuri Kunde Schlesner
2014-11-24Remove duplicated docs/update them for changed parameters.Yuri Kunde Schlesner
2014-11-24HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner
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.
2014-11-24Change some SkyEye defines to const intsYuri Kunde Schlesner
This prevents them from interfering with other constants defined in different namespaces.
2014-11-23Merge pull request #191 from archshift/deletexyzbunnei
Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.
2014-11-23Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.archshift
2014-11-20Add more services and some fixes, along with more "override"purpasmart96
in the service's headers
2014-11-19Merge pull request #211 from linkmauve/masterbunnei
Remove trailing spaces from the entire project
2014-11-19Merge pull request #208 from lioncash/staticsbunnei
Add static to some variables
2014-11-19Remove tabs in all files except in skyeye imports and in generated GL codeEmmanuel Gil Peyrot
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Emmanuel Gil Peyrot
or generated
2014-11-18Add static to some variablesLioncash
2014-11-18Merge pull request #165 from neobrain/viewport-scalingbunnei
Stretch emulation output to render window and be display density independent
2014-11-18Merge Config::ReadXYZsarchshift
2014-11-18Merge pull request #207 from lioncash/docsTony Wasserka
Fix documentation of parameters
2014-11-18Merge pull request #209 from lioncash/warnTony Wasserka
directory_sdmc: Fix a signed/unsigned mismatch comparison
2014-11-18Merge pull request #210 from lioncash/typedefTony Wasserka
system: Get rid of an unnecessary enum typedef
2014-11-18system: Get rid of an unnecessary enum typedefLioncash
2014-11-18directory_sdmc: Fix a signed/unsigned mismatch comparisonLioncash
2014-11-18Fix documentation of parametersLioncash
2014-11-18Remove extraneous semicolonsLioncash
2014-11-18citra GLFW: Ignore minimal window size hints.Tony Wasserka
GLFW provides no proper support for this, hence we just allow any window size to be used.