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

Unified Diff: src/shared/platform/nacl_host_dir.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/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 04860b58cf71d46fd9cdca19dabfc77fe1a08bf2..26eb523f512caaea609086e53b405ea3b6a133aa 100644
--- a/src/shared/platform/nacl_host_dir.h
+++ b/src/shared/platform/nacl_host_dir.h
@@ -76,6 +76,14 @@ extern int NaClHostDirRewind(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