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

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

Issue 11190066: [NaCl SDK] nacl-mounts example. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix windows Created 8 years, 1 month 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 | Annotate | Revision Log
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_MOUNTS_KERNEL_INTERCEPT_H_ 5 #ifndef LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_
6 #define LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_ 6 #define LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_
7 7
8 #include "nacl_mounts/ostypes.h" 8 #include "nacl_mounts/ostypes.h"
9 #include "utils/macros.h" 9 #include "utils/macros.h"
10 10
(...skipping 28 matching lines...) Expand all
39 int ki_isatty(int fd); 39 int ki_isatty(int fd);
40 int ki_close(int fd); 40 int ki_close(int fd);
41 off_t ki_lseek(int fd, off_t offset, int whence); 41 off_t ki_lseek(int fd, off_t offset, int whence);
42 int ki_remove(const char* path); 42 int ki_remove(const char* path);
43 int ki_unlink(const char* path); 43 int ki_unlink(const char* path);
44 int ki_access(const char* path, int amode); 44 int ki_access(const char* path, int amode);
45 45
46 EXTERN_C_END 46 EXTERN_C_END
47 47
48 #endif // LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_ 48 #endif // LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_
49
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698