| Index: src/trusted/service_runtime/nacl_syscall_common.h
|
| diff --git a/src/trusted/service_runtime/nacl_syscall_common.h b/src/trusted/service_runtime/nacl_syscall_common.h
|
| index 16382cc43cb13fb23910fe70e0895c39bfabd477..da56e6ef6f545ee0a5b83cdc91ec4c957946e832 100644
|
| --- a/src/trusted/service_runtime/nacl_syscall_common.h
|
| +++ b/src/trusted/service_runtime/nacl_syscall_common.h
|
| @@ -36,14 +36,6 @@ int32_t NaClSysBrk(struct NaClAppThread *natp,
|
|
|
| int NaClHighResolutionTimerEnabled(void);
|
|
|
| -int32_t NaClOpenAclCheck(struct NaClApp *nap,
|
| - char const *path,
|
| - int flags,
|
| - int mode);
|
| -
|
| -int32_t NaClStatAclCheck(struct NaClApp *nap,
|
| - char const *path);
|
| -
|
| int32_t NaClSysGetpid(struct NaClAppThread *natp);
|
|
|
| int32_t NaClSysExit(struct NaClAppThread *natp,
|
| @@ -66,11 +58,6 @@ int32_t NaClSysDup2(struct NaClAppThread *natp,
|
| int oldfd,
|
| int newfd);
|
|
|
| -int32_t NaClSysOpen(struct NaClAppThread *natp,
|
| - char *pathname,
|
| - int flags,
|
| - int mode);
|
| -
|
| int32_t NaClSysClose(struct NaClAppThread *natp,
|
| int d);
|
|
|
| @@ -98,27 +85,6 @@ int32_t NaClSysFstat(struct NaClAppThread *natp,
|
| int d,
|
| struct nacl_abi_stat *nasp);
|
|
|
| -int32_t NaClSysStat(struct NaClAppThread *natp,
|
| - const char *path,
|
| - struct nacl_abi_stat *nasp);
|
| -
|
| -int32_t NaClSysMkdir(struct NaClAppThread *natp,
|
| - uint32_t path,
|
| - int mode);
|
| -
|
| -int32_t NaClSysRmdir(struct NaClAppThread *natp,
|
| - uint32_t path);
|
| -
|
| -int32_t NaClSysChdir(struct NaClAppThread *natp,
|
| - uint32_t path);
|
| -
|
| -int32_t NaClSysGetcwd(struct NaClAppThread *natp,
|
| - uint32_t buffer,
|
| - int len);
|
| -
|
| -int32_t NaClSysUnlink(struct NaClAppThread *natp,
|
| - uint32_t path);
|
| -
|
| /* bool */
|
| int NaClSysCommonAddrRangeContainsExecutablePages(struct NaClApp *nap,
|
| uintptr_t usraddr,
|
|
|