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

Unified Diff: sysdeps/nacl/irt_syscalls.h

Issue 9965011: added several syscalls for nacl mounts (Closed) Base URL: http://git.chromium.org/native_client/nacl-glibc.git@master
Patch Set: remove buf check Created 8 years, 9 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 | « elf/Versions ('k') | sysdeps/nacl/irt_syscalls.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sysdeps/nacl/irt_syscalls.h
diff --git a/sysdeps/nacl/irt_syscalls.h b/sysdeps/nacl/irt_syscalls.h
index 320b8ecb8b9a069a83d5267ed8ef739aac9f7f12..ac4fd6439bab39498dfb42d61db63abd9f40d912 100644
--- a/sysdeps/nacl/irt_syscalls.h
+++ b/sysdeps/nacl/irt_syscalls.h
@@ -24,6 +24,11 @@ extern int (*__nacl_irt_nanosleep) (const struct timespec *req,
extern int (*__nacl_irt_sched_yield) (void);
extern int (*__nacl_irt_sysconf) (int name, int *value);
+extern int (*__nacl_irt_mkdir) (const char* pathname, mode_t mode);
+extern int (*__nacl_irt_rmdir) (const char* pathname);
+extern int (*__nacl_irt_chdir) (const char* pathname);
+extern int (*__nacl_irt_getcwd) (char* buf, size_t size, int* ret);
+
extern int (*__nacl_irt_open) (const char *pathname, int oflag, mode_t cmode,
int *newfd);
extern int (*__nacl_irt_close) (int fd);
« no previous file with comments | « elf/Versions ('k') | sysdeps/nacl/irt_syscalls.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698