diff options
| author | bunnei <bunneidev@gmail.com> | 2018-01-17 12:29:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-17 12:29:23 -0500 |
| commit | 8bff9c91525da2617e5152a16e09b980237dce75 (patch) | |
| tree | 16b569b3e1e1cdf463b5a2effbb266f95571bce2 /src/core/hle/service/nvdrv/nvdrv.cpp | |
| parent | 7fa32af1c7da616eeff970b246274cc5c111abd2 (diff) | |
| parent | 60d650cc4ec377fc0d3096bb3f9900fc4bc10299 (diff) | |
Merge pull request #70 from flerovii/nvdrv-close
nvdrv: stubbed Close(cmd 2)
Diffstat (limited to 'src/core/hle/service/nvdrv/nvdrv.cpp')
| -rw-r--r-- | src/core/hle/service/nvdrv/nvdrv.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.cpp b/src/core/hle/service/nvdrv/nvdrv.cpp index cf525a875..9b73886bb 100644 --- a/src/core/hle/service/nvdrv/nvdrv.cpp +++ b/src/core/hle/service/nvdrv/nvdrv.cpp @@ -49,5 +49,15 @@ u32 Module::Ioctl(u32 fd, u32 command, const std::vector<u8>& input, std::vector return device->ioctl(command, input, output); } +ResultCode Module::Close(u32 fd) { + auto itr = open_files.find(fd); + ASSERT_MSG(itr != open_files.end(), "Tried to talk to an invalid device"); + + open_files.erase(itr); + + // TODO(flerovium): return correct result code if operation failed. + return RESULT_SUCCESS; +} + } // namespace Nvidia } // namespace Service |
