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

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

Issue 1235633004: DON'T USE THIS -- Providing some missing POSIX File syscalls. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 5 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_list.c ('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 2bc45329e3946f761b1b7fbed23a21d8399f1b01..1c8d3272a0acebe4b9f33cd158b67284aac6fa2a 100644
--- a/src/trusted/service_runtime/sys_fdio.h
+++ b/src/trusted/service_runtime/sys_fdio.h
@@ -51,6 +51,23 @@ int32_t NaClSysGetdents(struct NaClAppThread *natp,
uint32_t dirp,
size_t count);
+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);
+
int32_t NaClSysIsatty(struct NaClAppThread *natp,
int d);
« no previous file with comments | « src/trusted/service_runtime/nacl_syscall_list.c ('k') | src/trusted/service_runtime/sys_fdio.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698