summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-10-25 06:34:40 +0200
committerLiam <byteslice@airmail.cc>2023-10-25 19:05:56 +0200
commit723df0f3685f01ce5a0330d567932136a9de7a8f (patch)
tree5b26229e14b70dba5d59d9265b750e5edff874b5 /src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
parentnvdrv: fix up remaining copy calls (diff)
downloadyuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.gz
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.bz2
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.lz
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.xz
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.zst
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvhost_ctrl.h')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_ctrl.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
index 6913c61ac..992124b60 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.h
@@ -190,20 +190,11 @@ private:
NvResult IocCtrlEventRegister(IocCtrlEventRegisterParams& params);
NvResult IocCtrlEventUnregister(IocCtrlEventUnregisterParams& params);
NvResult IocCtrlEventUnregisterBatch(IocCtrlEventUnregisterBatchParams& params);
+ NvResult IocCtrlEventWait(IocCtrlEventWaitParams& params, bool is_allocation);
NvResult IocCtrlClearEventWait(IocCtrlEventClearParams& params);
NvResult FreeEvent(u32 slot);
- // TODO: these are not the correct names
- NvResult IocCtrlEventWaitNotAllocation(IocCtrlEventWaitParams& params) {
- return this->IocCtrlEventWaitImpl(params, false);
- }
- NvResult IocCtrlEventWaitWithAllocation(IocCtrlEventWaitParams& params) {
- return this->IocCtrlEventWaitImpl(params, true);
- }
-
- NvResult IocCtrlEventWaitImpl(IocCtrlEventWaitParams& params, bool is_allocation);
-
EventInterface& events_interface;
NvCore::Container& core;
NvCore::SyncpointManager& syncpoint_manager;