| Index: native_client_sdk/src/libraries/nacl_io/mount_node_mem.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/mount_node_mem.cc b/native_client_sdk/src/libraries/nacl_io/mount_node_mem.cc
|
| index 5beb0b87b13af0da3d4b46331f24ff204edba600..7924fa4c53a51821fdb14268b3de61f611f526da 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/mount_node_mem.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/mount_node_mem.cc
|
| @@ -10,6 +10,8 @@
|
| #include "nacl_io/osstat.h"
|
| #include "sdk_util/auto_lock.h"
|
|
|
| +namespace nacl_io {
|
| +
|
| #define BLOCK_SIZE (1 << 16)
|
| #define BLOCK_MASK (BLOCK_SIZE - 1)
|
|
|
| @@ -93,3 +95,5 @@ Error MountNodeMem::FTruncate(off_t new_size) {
|
| return EIO;
|
| }
|
|
|
| +} // namespace nacl_io
|
| +
|
|
|