Chromium Code Reviews| Index: native_client_sdk/src/libraries/nacl_io/fuse.h |
| diff --git a/native_client_sdk/src/libraries/nacl_io/fuse.h b/native_client_sdk/src/libraries/nacl_io/fuse.h |
| index 314291c7cc4ef5483f020b5718939307331e127e..5f7978622304d91056d5a625282b715501e71e30 100644 |
| --- a/native_client_sdk/src/libraries/nacl_io/fuse.h |
| +++ b/native_client_sdk/src/libraries/nacl_io/fuse.h |
| @@ -198,6 +198,8 @@ struct fuse_operations { |
| size_t count, |
| off_t, |
| struct fuse_file_info*); |
| + // Called by utime()/utimes()/futimes()/futimens() etc. |
| + int (*utimens)(const char*, const struct timespec tv[2]); |
|
Sam Clegg
2014/09/12 21:36:26
Why did you move this up?
binji
2014/09/12 21:50:07
I moved it because all functions below are not imp
|
| // The following functions are not currently called by the nacl_io |
| // implementation of FUSE. |
| @@ -232,7 +234,6 @@ struct fuse_operations { |
| int (*setxattr)(const char*, const char*, const char*, size_t, int); |
| int (*statfs)(const char*, struct statvfs*); |
| int (*symlink)(const char*, const char*); |
| - int (*utimens)(const char*, const struct timespec tv[2]); |
| int (*write_buf)(const char*, |
| struct fuse_bufvec* buf, |
| off_t off, |