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
386dd722
There was an error fetching the commit references. Please try again later.
Commit
386dd722
authored
10 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
fixed naming for APT_U
parent
7ec5950b
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/core/hle/service/apt.cpp
+3
-3
3 additions, 3 deletions
src/core/hle/service/apt.cpp
src/core/hle/service/apt.h
+5
-5
5 additions, 5 deletions
src/core/hle/service/apt.h
src/core/hle/service/service.cpp
+1
-1
1 addition, 1 deletion
src/core/hle/service/service.cpp
with
9 additions
and
9 deletions
src/core/hle/service/apt.cpp
+
3
−
3
View file @
386dd722
...
...
@@ -8,7 +8,7 @@
#include
"core/hle/hle.h"
#include
"core/hle/service/apt.h"
namespace
Service
{
namespace
APT_U
{
const
HLE
::
FunctionDef
APT_U_Table
[]
=
{
{
0x00010040
,
NULL
,
"GetLockHandle"
},
...
...
@@ -92,7 +92,7 @@ const HLE::FunctionDef APT_U_Table[] = {
};
// Returns handle to APT Mutex. Not imlemented.
Syscall
::
Result
APT_U
::
GetLockHandle
()
{
Syscall
::
Result
Interface
::
GetLockHandle
()
{
return
0x00000000
;
}
...
...
@@ -100,7 +100,7 @@ Syscall::Result APT_U::GetLockHandle() {
* Called when svcSendSyncRequest is called, loads command buffer and executes comand
* @return Return result of svcSendSyncRequest passed back to user app
*/
Syscall
::
Result
APT_U
::
Sync
()
{
Syscall
::
Result
Interface
::
Sync
()
{
Syscall
::
Result
res
=
0
;
u32
*
cmd_buff
=
(
u32
*
)
HLE
::
GetPointer
(
HLE
::
CMD_BUFFER_ADDR
+
CMD_OFFSET
);
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/apt.h
+
5
−
5
View file @
386dd722
...
...
@@ -9,7 +9,7 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
// Namespace Service
namespace
Service
{
namespace
APT_U
{
// Application and title launching service. These services handle signaling for home/power button as
// well. Only one session for either APT service can be open at a time, normally processes close the
...
...
@@ -17,13 +17,13 @@ namespace Service {
// exactly the same, however certain commands are only accessible with APT:S(NS module will call
// svcBreak when the command isn't accessible). See http://3dbrew.org/wiki/NS#APT_Services.
class
APT_U
:
public
Interface
{
class
Interface
:
public
Service
::
Interface
{
public:
APT_U
()
{
Interface
()
{
}
~
APT_U
()
{
~
Interface
()
{
}
enum
{
...
...
@@ -62,7 +62,7 @@ private:
Syscall
::
Result
GetLockHandle
();
DISALLOW_COPY_AND_ASSIGN
(
APT_U
);
DISALLOW_COPY_AND_ASSIGN
(
Interface
);
};
}
// namespace
This diff is collapsed.
Click to expand it.
src/core/hle/service/service.cpp
+
1
−
1
View file @
386dd722
...
...
@@ -74,7 +74,7 @@ Interface* Manager::FetchFromPortName(std::string port_name) {
void
Init
()
{
g_manager
=
new
Manager
;
g_manager
->
AddService
(
new
SRV
::
Interface
);
g_manager
->
AddService
(
new
APT_U
);
g_manager
->
AddService
(
new
APT_U
::
Interface
);
NOTICE_LOG
(
HLE
,
"Services initialized OK"
);
}
...
...
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