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

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/kernel_intercept.h

Issue 832413004: [NaCl SDK] nacl_io: Change default root filesystem type from passthroughfs to memfs Base URL: https://chromium.googlesource.com/chromium/src.git@cleanup_path
Patch Set: Created 5 years, 2 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 | « no previous file | native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #ifndef LIBRARIES_NACL_IO_KERNEL_INTERCEPT_H_ 5 #ifndef LIBRARIES_NACL_IO_KERNEL_INTERCEPT_H_
6 #define LIBRARIES_NACL_IO_KERNEL_INTERCEPT_H_ 6 #define LIBRARIES_NACL_IO_KERNEL_INTERCEPT_H_
7 7
8 #include <dirent.h> 8 #include <dirent.h>
9 #include <stdarg.h> 9 #include <stdarg.h>
10 #include <sys/time.h> 10 #include <sys/time.h>
11 11
12 #include <ppapi/c/ppb.h> 12 #include <ppapi/c/ppb.h>
13 #include <ppapi/c/pp_instance.h> 13 #include <ppapi/c/pp_instance.h>
14 14
15 #include "nacl_io/osdirent.h"
15 #include "nacl_io/ossignal.h" 16 #include "nacl_io/ossignal.h"
16 #include "nacl_io/ossocket.h" 17 #include "nacl_io/ossocket.h"
17 #include "nacl_io/osstat.h" 18 #include "nacl_io/osstat.h"
18 #include "nacl_io/ostermios.h" 19 #include "nacl_io/ostermios.h"
19 #include "nacl_io/ostypes.h" 20 #include "nacl_io/ostypes.h"
20 #include "nacl_io/osutime.h" 21 #include "nacl_io/osutime.h"
21 #include "sdk_util/macros.h" 22 #include "sdk_util/macros.h"
22 23
23 EXTERN_C_BEGIN 24 EXTERN_C_BEGIN
24 25
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 const void* optval, 192 const void* optval,
192 socklen_t len); 193 socklen_t len);
193 int ki_shutdown(int fd, int how); 194 int ki_shutdown(int fd, int how);
194 int ki_socket(int domain, int type, int protocol); 195 int ki_socket(int domain, int type, int protocol);
195 int ki_socketpair(int domain, int type, int protocl, int* sv); 196 int ki_socketpair(int domain, int type, int protocl, int* sv);
196 #endif /* PROVIDES_SOCKET_API */ 197 #endif /* PROVIDES_SOCKET_API */
197 198
198 EXTERN_C_END 199 EXTERN_C_END
199 200
200 #endif /* LIBRARIES_NACL_IO_KERNEL_INTERCEPT_H_ */ 201 #endif /* LIBRARIES_NACL_IO_KERNEL_INTERCEPT_H_ */
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698