diff options
author | bunnei <bunneidev@gmail.com> | 2015-06-21 16:55:02 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-06-21 16:55:02 +0200 |
commit | 9850f983392af03e4befdaece801a72abc4b1a30 (patch) | |
tree | 91e73c2e97a0919633939e88c712339e482bb65b /src/common | |
parent | Merge pull request #871 from gwicks/master (diff) | |
parent | Services: Continue separation of services into their own folders (diff) | |
download | yuzu-9850f983392af03e4befdaece801a72abc4b1a30.tar yuzu-9850f983392af03e4befdaece801a72abc4b1a30.tar.gz yuzu-9850f983392af03e4befdaece801a72abc4b1a30.tar.bz2 yuzu-9850f983392af03e4befdaece801a72abc4b1a30.tar.lz yuzu-9850f983392af03e4befdaece801a72abc4b1a30.tar.xz yuzu-9850f983392af03e4befdaece801a72abc4b1a30.tar.zst yuzu-9850f983392af03e4befdaece801a72abc4b1a30.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/log.h | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 6ca8cb78d..d85e58373 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -37,6 +37,7 @@ namespace Log { SUB(Service, APT) \ SUB(Service, GSP) \ SUB(Service, AC) \ + SUB(Service, AM) \ SUB(Service, PTM) \ SUB(Service, LDR) \ SUB(Service, NIM) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index d720d7fe0..5b3a731e9 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -57,13 +57,14 @@ enum class Class : ClassType { Service_APT, ///< The APT (Applets) service Service_GSP, ///< The GSP (GPU control) service Service_AC, ///< The AC (WiFi status) service + Service_AM, ///< The AM (Application manager) service Service_PTM, ///< The PTM (Power status & misc.) service Service_LDR, ///< The LDR (3ds dll loader) service Service_NIM, ///< The NIM (Network interface manager) service - Service_NWM, ///< The NWM (Network manager) service + Service_NWM, ///< The NWM (Network wlan manager) service Service_CFG, ///< The CFG (Configuration) service Service_DSP, ///< The DSP (DSP control) service - Service_HID, ///< The HID (User input) service + Service_HID, ///< The HID (Human interface device) service Service_SOC, ///< The SOC (Socket) service Service_Y2R, ///< The Y2R (YUV to RGB conversion) service HW, ///< Low-level hardware emulation |