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

Unified Diff: src/shared/platform/nacl_host_dir.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/shared/platform/nacl_host_desc.h ('k') | src/shared/platform/osx/nacl_host_dir.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/platform/nacl_host_dir.h
diff --git a/src/shared/platform/nacl_host_dir.h b/src/shared/platform/nacl_host_dir.h
index 347e910e2b61882c8247792a569448cef070b2e6..8f49a01ae9412a325378ebddd39d24d3a622412c 100644
--- a/src/shared/platform/nacl_host_dir.h
+++ b/src/shared/platform/nacl_host_dir.h
@@ -66,6 +66,14 @@ extern ssize_t NaClHostDirGetdents(struct NaClHostDir *d,
*/
extern int NaClHostDirClose(struct NaClHostDir *d);
+extern int NaClHostDirFchdir(struct NaClHostDir *d) NACL_WUR;
+
+extern int NaClHostDirFchmod(struct NaClHostDir *d, int mode) NACL_WUR;
+
+extern int NaClHostDirFsync(struct NaClHostDir *d) NACL_WUR;
+
+extern int NaClHostDirFdatasync(struct NaClHostDir *d) NACL_WUR;
+
EXTERN_C_END
#endif /* NATIVE_CLIENT_SRC_TRUSTED_PLATFORM_NACL_HOST_DIR_H__ */
« no previous file with comments | « src/shared/platform/nacl_host_desc.h ('k') | src/shared/platform/osx/nacl_host_dir.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698