summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/interface.cpp
diff options
context:
space:
mode:
authorFrederic Meyer <binarynoob96@gmail.com>2018-01-17 17:08:46 +0100
committerFrederic Meyer <binarynoob96@gmail.com>2018-01-17 17:08:46 +0100
commit60d650cc4ec377fc0d3096bb3f9900fc4bc10299 (patch)
tree43185a8f70a559f3dfc5f6e4200d50ea7f28fb42 /src/core/hle/service/nvdrv/interface.cpp
parentMerge pull request #67 from RiverCityRansomware/gdbstubtypo (diff)
downloadyuzu-60d650cc4ec377fc0d3096bb3f9900fc4bc10299.tar
yuzu-60d650cc4ec377fc0d3096bb3f9900fc4bc10299.tar.gz
yuzu-60d650cc4ec377fc0d3096bb3f9900fc4bc10299.tar.bz2
yuzu-60d650cc4ec377fc0d3096bb3f9900fc4bc10299.tar.lz
yuzu-60d650cc4ec377fc0d3096bb3f9900fc4bc10299.tar.xz
yuzu-60d650cc4ec377fc0d3096bb3f9900fc4bc10299.tar.zst
yuzu-60d650cc4ec377fc0d3096bb3f9900fc4bc10299.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.cpp')
-rw-r--r--src/core/hle/service/nvdrv/interface.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/interface.cpp b/src/core/hle/service/nvdrv/interface.cpp
index 0670ca155..848615fa7 100644
--- a/src/core/hle/service/nvdrv/interface.cpp
+++ b/src/core/hle/service/nvdrv/interface.cpp
@@ -48,6 +48,18 @@ void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) {
rb.Push(nv_result);
}
+void NVDRV::Close(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service, "(STUBBED) called");
+
+ IPC::RequestParser rp{ctx};
+ u32 fd = rp.Pop<u32>();
+
+ auto result = nvdrv->Close(fd);
+
+ IPC::RequestBuilder rb{ctx, 2};
+ rb.Push(result);
+}
+
void NVDRV::Initialize(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
IPC::RequestBuilder rb{ctx, 3};
@@ -60,6 +72,7 @@ NVDRV::NVDRV(std::shared_ptr<Module> nvdrv, const char* name)
static const FunctionInfo functions[] = {
{0, &NVDRV::Open, "Open"},
{1, &NVDRV::Ioctl, "Ioctl"},
+ {2, &NVDRV::Close, "Close"},
{3, &NVDRV::Initialize, "Initialize"},
};
RegisterHandlers(functions);