aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/ErrorModule.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-08-16 20:47:36 -0300
committerGitHub <noreply@github.com>2018-08-16 20:47:36 -0300
commit521751795a1c97c0d97f6f8904a3be69b13d3a9d (patch)
tree942a05899c40e2de6d92a38b93a494bd96ee64b8 /Ryujinx.HLE/HOS/ErrorModule.cs
parent182d716867ae477c2b15a5332430dc2641fa1cc3 (diff)
Code style fixes and nits on the HLE project (#355)
* Some style fixes and nits on ITimeZoneService * Remove some unneeded usings * Remove the Ryujinx.HLE.OsHle.Handles namespace * Remove hbmenu automatic load on process exit * Rename Ns to Device, rename Os to System, rename SystemState to State * Move Exceptions and Utilities out of OsHle * Rename OsHle to HOS * Rename OsHle folder to HOS * IManagerDisplayService and ISystemDisplayService style fixes * BsdError shouldn't be public * Add a empty new line before using static * Remove unused file * Some style fixes on NPDM * Exit gracefully when the application is closed * Code style fixes on IGeneralService * Add 0x prefix on values printed as hex * Small improvements on finalization code * Move ProcessId and ThreadId out of AThreadState * Rename VFs to FileSystem * FsAccessHeader shouldn't be public. Also fix file names casing * More case changes on NPDM * Remove unused files * Move using to the correct place on NPDM * Use properties on KernelAccessControlMmio * Address PR feedback
Diffstat (limited to 'Ryujinx.HLE/HOS/ErrorModule.cs')
-rw-r--r--Ryujinx.HLE/HOS/ErrorModule.cs101
1 files changed, 101 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/ErrorModule.cs b/Ryujinx.HLE/HOS/ErrorModule.cs
new file mode 100644
index 00000000..5c6c9b05
--- /dev/null
+++ b/Ryujinx.HLE/HOS/ErrorModule.cs
@@ -0,0 +1,101 @@
+namespace Ryujinx.HLE.HOS
+{
+ enum ErrorModule
+ {
+ Kernel = 1,
+ Fs = 2,
+ Os = 3, // (Memory, Thread, Mutex, NVIDIA)
+ Htcs = 4,
+ Ncm = 5,
+ Dd = 6,
+ Debug_Monitor = 7,
+ Lr = 8,
+ Loader = 9,
+ IPC_Command_Interface = 10,
+ IPC = 11,
+ Pm = 15,
+ Ns = 16,
+ Socket = 17,
+ Htc = 18,
+ Ncm_Content = 20,
+ Sm = 21,
+ RO_Userland = 22,
+ SdMmc = 24,
+ Ovln = 25,
+ Spl = 26,
+ Ethc = 100,
+ I2C = 101,
+ Gpio = 102,
+ Uart = 103,
+ Settings = 105,
+ Wlan = 107,
+ Xcd = 108,
+ Nifm = 110,
+ Hwopus = 111,
+ Bluetooth = 113,
+ Vi = 114,
+ Nfp = 115,
+ Time = 116,
+ Fgm = 117,
+ Oe = 118,
+ Pcie = 120,
+ Friends = 121,
+ Bcat = 122,
+ SSL = 123,
+ Account = 124,
+ News = 125,
+ Mii = 126,
+ Nfc = 127,
+ Am = 128,
+ Play_Report = 129,
+ Ahid = 130,
+ Qlaunch = 132,
+ Pcv = 133,
+ Omm = 134,
+ Bpc = 135,
+ Psm = 136,
+ Nim = 137,
+ Psc = 138,
+ Tc = 139,
+ Usb = 140,
+ Nsd = 141,
+ Pctl = 142,
+ Btm = 143,
+ Ec = 144,
+ ETicket = 145,
+ Ngc = 146,
+ Error_Report = 147,
+ Apm = 148,
+ Profiler = 150,
+ Error_Upload = 151,
+ Audio = 153,
+ Npns = 154,
+ Npns_Http_Stream = 155,
+ Arp = 157,
+ Swkbd = 158,
+ Boot = 159,
+ Nfc_Mifare = 161,
+ Userland_Assert = 162,
+ Fatal = 163,
+ Nim_Shop = 164,
+ Spsm = 165,
+ Bgtc = 167,
+ Userland_Crash = 168,
+ SRepo = 180,
+ Dauth = 181,
+ Hid = 202,
+ Ldn = 203,
+ Irsensor = 205,
+ Capture = 206,
+ Manu = 208,
+ Atk = 209,
+ Web = 210,
+ Grc = 212,
+ Migration = 216,
+ Migration_Ldc_Server = 217,
+ General_Web_Applet = 800,
+ Wifi_Web_Auth_Applet = 809,
+ Whitelisted_Applet = 810,
+ ShopN = 811
+ }
+}