diff options
| author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-06-10 17:57:08 -0700 |
|---|---|---|
| committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-06-11 13:10:21 -0700 |
| commit | 92ca422088eb49c31e8b6146872548c456e56f3e (patch) | |
| tree | a67048e517446efc43afbca27f8acc05de654604 /src/core/hle/ipc_helpers.h | |
| parent | 8cb65fe65a48988d40dd3ca2c4f673629a275b4b (diff) | |
Kernel: Allow clearing request_objects to re-use buffer space
Reduces the necessary allocation to max(in_handles, out_handles) rather
than (in_handles + out_handles).
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
| -rw-r--r-- | src/core/hle/ipc_helpers.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h index 5f370bc3b..f0d89cffe 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h @@ -62,6 +62,9 @@ class RequestBuilder : public RequestHelperBase { public: RequestBuilder(Kernel::HLERequestContext& context, Header command_header) : RequestHelperBase(context, command_header) { + // From this point we will start overwriting the existing command buffer, so it's safe to + // release all previous incoming Object pointers since they won't be usable anymore. + context.ClearIncomingObjects(); cmdbuf[0] = header.raw; } |
