| OLD | NEW |
| 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 Loading... |
| 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_ */ |
| OLD | NEW |