mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-23 03:06:52 -04:00
Stratosphere: Implement support for deferred commands. Finish sm GetService()'s deferred path.
This commit is contained in:
parent
809090e40d
commit
674528b246
16 changed files with 137 additions and 27 deletions
|
@ -29,7 +29,11 @@ class ProcessManagerService : IServiceObject {
|
|||
static_assert(sizeof(ProcessManagerService::ProgramInfo) == 0x400, "Incorrect ProgramInfo definition.");
|
||||
|
||||
public:
|
||||
Result dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size);
|
||||
virtual Result dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size);
|
||||
virtual Result handle_deferred() {
|
||||
/* This service will never defer. */
|
||||
return 0;
|
||||
}
|
||||
|
||||
private:
|
||||
/* Actual commands. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue