GSP_GPU: Release the GPU right if the active session closes the gsp_gpu session

This commit is contained in:
B3n30 2018-03-01 14:54:38 +01:00
parent 941ccaeed6
commit 98771a6363
3 changed files with 24 additions and 5 deletions

View file

@ -52,14 +52,14 @@ public:
* associated ServerSession alive for the duration of the connection.
* @param server_session Owning pointer to the ServerSession associated with the connection.
*/
void ClientConnected(SharedPtr<ServerSession> server_session);
virtual 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(SharedPtr<ServerSession> server_session);
virtual void ClientDisconnected(SharedPtr<ServerSession> server_session);
/// Empty placeholder structure for services with no per-session data. The session data classes
/// in each service must inherit from this.