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

Side by Side Diff: src/untrusted/irt/irt_filename.c

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, 4 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 unified diff | Download patch
« no previous file with comments | « src/untrusted/irt/irt_fdio.c ('k') | src/untrusted/irt/irt_interfaces.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 #include "native_client/src/untrusted/irt/irt.h" 7 #include "native_client/src/untrusted/irt/irt.h"
8 #include "native_client/src/untrusted/irt/irt_dev.h" 8 #include "native_client/src/untrusted/irt/irt_dev.h"
9 #include "native_client/src/untrusted/nacl/syscall_bindings_trampoline.h" 9 #include "native_client/src/untrusted/nacl/syscall_bindings_trampoline.h"
10 10
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 }; 88 };
89 89
90 const struct nacl_irt_dev_filename_v0_2 nacl_irt_dev_filename_v0_2 = { 90 const struct nacl_irt_dev_filename_v0_2 nacl_irt_dev_filename_v0_2 = {
91 nacl_irt_open, 91 nacl_irt_open,
92 nacl_irt_stat, 92 nacl_irt_stat,
93 nacl_irt_mkdir, 93 nacl_irt_mkdir,
94 nacl_irt_rmdir, 94 nacl_irt_rmdir,
95 nacl_irt_chdir, 95 nacl_irt_chdir,
96 nacl_irt_getcwd, 96 nacl_irt_getcwd,
97 nacl_irt_unlink, 97 nacl_irt_unlink,
98 nacl_irt_truncate,
99 nacl_irt_lstat,
100 nacl_irt_link,
101 nacl_irt_rename,
102 nacl_irt_symlink,
103 nacl_irt_chmod,
104 nacl_irt_access,
105 nacl_irt_readlink,
106 nacl_irt_utimes,
98 }; 107 };
99 108
100 const struct nacl_irt_dev_filename nacl_irt_dev_filename = { 109 const struct nacl_irt_dev_filename nacl_irt_dev_filename = {
101 nacl_irt_open, 110 nacl_irt_open,
102 nacl_irt_stat, 111 nacl_irt_stat,
103 nacl_irt_mkdir, 112 nacl_irt_mkdir,
104 nacl_irt_rmdir, 113 nacl_irt_rmdir,
105 nacl_irt_chdir, 114 nacl_irt_chdir,
106 nacl_irt_getcwd, 115 nacl_irt_getcwd,
107 nacl_irt_unlink, 116 nacl_irt_unlink,
108 nacl_irt_truncate, 117 nacl_irt_truncate,
109 nacl_irt_lstat, 118 nacl_irt_lstat,
110 nacl_irt_link, 119 nacl_irt_link,
111 nacl_irt_rename, 120 nacl_irt_rename,
112 nacl_irt_symlink, 121 nacl_irt_symlink,
113 nacl_irt_chmod, 122 nacl_irt_chmod,
114 nacl_irt_access, 123 nacl_irt_access,
115 nacl_irt_readlink, 124 nacl_irt_readlink,
116 nacl_irt_utimes, 125 nacl_irt_utimes,
117 }; 126 };
OLDNEW
« no previous file with comments | « src/untrusted/irt/irt_fdio.c ('k') | src/untrusted/irt/irt_interfaces.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698