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
6dc133c2
There was an error fetching the commit references. Please try again later.
Commit
6dc133c2
authored
7 years ago
by
Yuri Kunde Schlesner
Browse files
Options
Downloads
Patches
Plain Diff
Kernel: Remove some unnecessary namespace qualifications
parent
d96a9e0c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/hle/kernel/hle_ipc.h
+6
-4
6 additions, 4 deletions
src/core/hle/kernel/hle_ipc.h
with
6 additions
and
4 deletions
src/core/hle/kernel/hle_ipc.h
+
6
−
4
View file @
6dc133c2
...
...
@@ -19,6 +19,8 @@ class ServerSession;
*/
class
SessionRequestHandler
:
public
std
::
enable_shared_from_this
<
SessionRequestHandler
>
{
public:
virtual
~
SessionRequestHandler
()
=
default
;
/**
* Handles a sync request from the emulated application.
* @param server_session The ServerSession that was triggered for this sync request,
...
...
@@ -27,27 +29,27 @@ public:
* this request (ServerSession, Originator thread, Translated command buffer, etc).
* @returns ResultCode the result code of the translate operation.
*/
virtual
void
HandleSyncRequest
(
Kernel
::
SharedPtr
<
Kernel
::
ServerSession
>
server_session
)
=
0
;
virtual
void
HandleSyncRequest
(
SharedPtr
<
ServerSession
>
server_session
)
=
0
;
/**
* Signals that a client has just connected to this HLE handler and keeps the
* associated ServerSession alive for the duration of the connection.
* @param server_session Owning pointer to the ServerSession associated with the connection.
*/
void
ClientConnected
(
Kernel
::
SharedPtr
<
Kernel
::
ServerSession
>
server_session
);
void
ClientConnected
(
SharedPtr
<
ServerSession
>
server_session
);
/**
* Signals that a client has just disconnected from this HLE handler and releases the
* associated ServerSession.
* @param server_session ServerSession associated with the connection.
*/
void
ClientDisconnected
(
Kernel
::
SharedPtr
<
Kernel
::
ServerSession
>
server_session
);
void
ClientDisconnected
(
SharedPtr
<
ServerSession
>
server_session
);
protected:
/// List of sessions that are connected to this handler.
/// A ServerSession whose server endpoint is an HLE implementation is kept alive by this list
// for the duration of the connection.
std
::
vector
<
Kernel
::
SharedPtr
<
Kernel
::
ServerSession
>>
connected_sessions
;
std
::
vector
<
SharedPtr
<
ServerSession
>>
connected_sessions
;
};
}
// namespace Kernel
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