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

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

Issue 23484041: Split filename-based syscall implementations into a separate file (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix missing #includes for Windows 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/service_runtime.gyp ('k') | src/trusted/service_runtime/sys_filename.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/sys_filename.h
diff --git a/src/trusted/service_runtime/sys_filename.h b/src/trusted/service_runtime/sys_filename.h
new file mode 100644
index 0000000000000000000000000000000000000000..0d9721badaabbdccb5c41d96c458fe795b3f741f
--- /dev/null
+++ b/src/trusted/service_runtime/sys_filename.h
@@ -0,0 +1,55 @@
+/*
+ * Copyright (c) 2013 The Native Client Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef NATIVE_CLIENT_SERVICE_RUNTIME_NACL_SYS_FILENAME_H_
+#define NATIVE_CLIENT_SERVICE_RUNTIME_NACL_SYS_FILENAME_H_ 1
+
+#include "native_client/src/include/nacl_base.h"
+#include "native_client/src/include/portability.h"
+
+EXTERN_C_BEGIN
+
+struct NaClApp;
+struct NaClAppThread;
+struct nacl_abi_stat;
+
+int32_t NaClOpenAclCheck(struct NaClApp *nap,
+ char const *path,
+ int flags,
+ int mode);
+
+int32_t NaClStatAclCheck(struct NaClApp *nap,
+ char const *path);
+
+int32_t NaClSysOpen(struct NaClAppThread *natp,
+ char *pathname,
+ int flags,
+ int mode);
+
+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);
+
+EXTERN_C_END
+
+#endif
« no previous file with comments | « src/trusted/service_runtime/service_runtime.gyp ('k') | src/trusted/service_runtime/sys_filename.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698