| Index: native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc b/native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc
|
| index 8b3bcab9f0b5be165ef9e60fd5c03e87b9a99025..52c5f961f98f48bc52f51442084c629d7a8f1d6e 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc
|
| @@ -122,13 +122,15 @@ class PassthroughFsNode : public Node {
|
| int real_fd_;
|
| };
|
|
|
| -PassthroughFs::PassthroughFs() {}
|
| +PassthroughFs::PassthroughFs() {
|
| +}
|
|
|
| Error PassthroughFs::Init(const FsInitArgs& args) {
|
| return Filesystem::Init(args);
|
| }
|
|
|
| -void PassthroughFs::Destroy() {}
|
| +void PassthroughFs::Destroy() {
|
| +}
|
|
|
| Error PassthroughFs::Access(const Path& path, int a_mode) {
|
| // There is no underlying 'access' syscall in NaCl. It just returns ENOSYS.
|
|
|