| Index: src/trusted/service_runtime/sys_fdio.h
|
| diff --git a/src/trusted/service_runtime/sys_fdio.h b/src/trusted/service_runtime/sys_fdio.h
|
| index 9b59753e672ea9ab6d6e17f781575440add7194e..22c8427999e00acfb3fbdbcacb81e1072e404208 100644
|
| --- a/src/trusted/service_runtime/sys_fdio.h
|
| +++ b/src/trusted/service_runtime/sys_fdio.h
|
| @@ -56,6 +56,28 @@ int32_t NaClSysIoctl(struct NaClAppThread *natp,
|
| int request,
|
| void *arg);
|
|
|
| +int32_t NaClSysFcntl(struct NaClAppThread *natp,
|
| + int d,
|
| + int cmd,
|
| + long arg);
|
| +
|
| +int32_t NaClSysFchdir(struct NaClAppThread *natp,
|
| + int d);
|
| +
|
| +int32_t NaClSysFchmod(struct NaClAppThread *natp,
|
| + int d,
|
| + int mode);
|
| +
|
| +int32_t NaClSysFsync(struct NaClAppThread *natp,
|
| + int d);
|
| +
|
| +int32_t NaClSysFdatasync(struct NaClAppThread *natp,
|
| + int d);
|
| +
|
| +int32_t NaClSysFtruncate(struct NaClAppThread *natp,
|
| + int d,
|
| + nacl_abi_off_t length);
|
| +
|
| EXTERN_C_END
|
|
|
| #endif
|
|
|