diff options
| author | 2014-05-26 21:01:27 -0400 | |
|---|---|---|
| committer | 2014-05-26 21:01:27 -0400 | |
| commit | d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb (patch) | |
| tree | 6eb4c55468938b7d2a95f029c15dd9f6be913748 /src/core/hle/service | |
| parent | svc: added stub for DuplicateHandle SVC call (diff) | |
| download | yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.tar.gz yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.tar.xz yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.zip | |
kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequest
Diffstat (limited to 'src/core/hle/service')
| -rw-r--r-- | src/core/hle/service/srv.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/hle/service/srv.h b/src/core/hle/service/srv.h index 1e35032ba..81109a2a8 100644 --- a/src/core/hle/service/srv.h +++ b/src/core/hle/service/srv.h | |||
| @@ -26,12 +26,6 @@ public: | |||
| 26 | return "srv:"; | 26 | return "srv:"; |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | /** | ||
| 30 | * Called when svcSendSyncRequest is called, loads command buffer and executes comand | ||
| 31 | * @return Return result of svcSendSyncRequest passed back to user app | ||
| 32 | */ | ||
| 33 | Result Sync(); | ||
| 34 | |||
| 35 | }; | 29 | }; |
| 36 | 30 | ||
| 37 | } // namespace | 31 | } // namespace |