Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
fc1359dc
There was an error fetching the commit references. Please try again later.
Commit
fc1359dc
authored
7 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
logger: Add PCTL service logging category.
parent
649960b4
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/common/logging/backend.cpp
+1
-0
1 addition, 0 deletions
src/common/logging/backend.cpp
src/common/logging/log.h
+1
-0
1 addition, 0 deletions
src/common/logging/log.h
src/core/hle/service/pctl/pctl_a.cpp
+1
-1
1 addition, 1 deletion
src/core/hle/service/pctl/pctl_a.cpp
with
3 additions
and
1 deletion
src/common/logging/backend.cpp
+
1
−
0
View file @
fc1359dc
...
@@ -44,6 +44,7 @@ namespace Log {
...
@@ -44,6 +44,7 @@ namespace Log {
SUB(Service, LM) \
SUB(Service, LM) \
SUB(Service, NIFM) \
SUB(Service, NIFM) \
SUB(Service, NVDRV) \
SUB(Service, NVDRV) \
SUB(Service, PCTL) \
SUB(Service, Audio) \
SUB(Service, Audio) \
SUB(Service, VI) \
SUB(Service, VI) \
CLS(HW) \
CLS(HW) \
...
...
This diff is collapsed.
Click to expand it.
src/common/logging/log.h
+
1
−
0
View file @
fc1359dc
...
@@ -61,6 +61,7 @@ enum class Class : ClassType {
...
@@ -61,6 +61,7 @@ enum class Class : ClassType {
Service_LM
,
///< The LM (Logger) service implementation
Service_LM
,
///< The LM (Logger) service implementation
Service_NIFM
,
///< The NIFM (Network interface) service
Service_NIFM
,
///< The NIFM (Network interface) service
Service_NVDRV
,
///< The NVDRV (Nvidia driver) service
Service_NVDRV
,
///< The NVDRV (Nvidia driver) service
Service_PCTL
,
///< The PCTL (Parental control) service
Service_Audio
,
///< The Audio (Audio control) service
Service_Audio
,
///< The Audio (Audio control) service
Service_VI
,
///< The VI (Video interface) service
Service_VI
,
///< The VI (Video interface) service
HW
,
///< Low-level hardware emulation
HW
,
///< Low-level hardware emulation
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/pctl/pctl_a.cpp
+
1
−
1
View file @
fc1359dc
...
@@ -18,7 +18,7 @@ void PCTL_A::GetService(Kernel::HLERequestContext& ctx) {
...
@@ -18,7 +18,7 @@ void PCTL_A::GetService(Kernel::HLERequestContext& ctx) {
IPC
::
ResponseBuilder
rb
{
ctx
,
2
,
0
,
1
};
IPC
::
ResponseBuilder
rb
{
ctx
,
2
,
0
,
1
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
PushIpcInterface
<
IParentalControlService
>
();
rb
.
PushIpcInterface
<
IParentalControlService
>
();
LOG_DEBUG
(
Service
,
"called"
);
LOG_DEBUG
(
Service
_PCTL
,
"called"
);
}
}
PCTL_A
::
PCTL_A
()
:
ServiceFramework
(
"pctl:a"
)
{
PCTL_A
::
PCTL_A
()
:
ServiceFramework
(
"pctl:a"
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment