Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: src/trusted/service_runtime/sys_fdio.h

Issue 24889002: Provides some of the missing POSIX file syscalls Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/service_runtime/nacl_syscall_handlers_gen.py ('k') | src/trusted/service_runtime/sys_fdio.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « src/trusted/service_runtime/nacl_syscall_handlers_gen.py ('k') | src/trusted/service_runtime/sys_fdio.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698