| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 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 /* | 7 /* |
| 8 * NaCl Service Runtime. I/O Descriptor / Handle abstraction. Memory | 8 * NaCl Service Runtime. I/O Descriptor / Handle abstraction. Memory |
| 9 * mapping using descriptors. | 9 * mapping using descriptors. |
| 10 */ | 10 */ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "native_client/src/trusted/desc/nacl_desc_invalid.h" | 34 #include "native_client/src/trusted/desc/nacl_desc_invalid.h" |
| 35 #include "native_client/src/trusted/desc/nacl_desc_io.h" | 35 #include "native_client/src/trusted/desc/nacl_desc_io.h" |
| 36 #include "native_client/src/trusted/desc/nacl_desc_mutex.h" | 36 #include "native_client/src/trusted/desc/nacl_desc_mutex.h" |
| 37 #include "native_client/src/trusted/desc/nacl_desc_null.h" | 37 #include "native_client/src/trusted/desc/nacl_desc_null.h" |
| 38 #include "native_client/src/trusted/desc/nacl_desc_rng.h" | 38 #include "native_client/src/trusted/desc/nacl_desc_rng.h" |
| 39 #include "native_client/src/trusted/desc/nacl_desc_quota.h" | 39 #include "native_client/src/trusted/desc/nacl_desc_quota.h" |
| 40 #include "native_client/src/trusted/desc/nacl_desc_sync_socket.h" | 40 #include "native_client/src/trusted/desc/nacl_desc_sync_socket.h" |
| 41 | 41 |
| 42 #include "native_client/src/trusted/nacl_base/nacl_refcount.h" | 42 #include "native_client/src/trusted/nacl_base/nacl_refcount.h" |
| 43 | 43 |
| 44 #include "native_client/src/trusted/service_runtime/include/bits/mman.h" |
| 44 #include "native_client/src/trusted/service_runtime/include/sys/errno.h" | 45 #include "native_client/src/trusted/service_runtime/include/sys/errno.h" |
| 45 #include "native_client/src/trusted/service_runtime/include/sys/mman.h" | |
| 46 #include "native_client/src/trusted/service_runtime/include/sys/stat.h" | 46 #include "native_client/src/trusted/service_runtime/include/sys/stat.h" |
| 47 #include "native_client/src/trusted/service_runtime/nacl_config.h" | 47 #include "native_client/src/trusted/service_runtime/nacl_config.h" |
| 48 #include "native_client/src/trusted/service_runtime/sel_util.h" | 48 #include "native_client/src/trusted/service_runtime/sel_util.h" |
| 49 | 49 |
| 50 /* | 50 /* |
| 51 * This file contains base class code for NaClDesc. | 51 * This file contains base class code for NaClDesc. |
| 52 * | 52 * |
| 53 * The implementation for following subclasses are elsewhere, but here | 53 * The implementation for following subclasses are elsewhere, but here |
| 54 * is an enumeration of them with a brief description: | 54 * is an enumeration of them with a brief description: |
| 55 * | 55 * |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 NaClDescSendMsgNotImplemented, | 524 NaClDescSendMsgNotImplemented, |
| 525 NaClDescRecvMsgNotImplemented, | 525 NaClDescRecvMsgNotImplemented, |
| 526 NaClDescLowLevelSendMsgNotImplemented, | 526 NaClDescLowLevelSendMsgNotImplemented, |
| 527 NaClDescLowLevelRecvMsgNotImplemented, | 527 NaClDescLowLevelRecvMsgNotImplemented, |
| 528 NaClDescConnectAddrNotImplemented, | 528 NaClDescConnectAddrNotImplemented, |
| 529 NaClDescAcceptConnNotImplemented, | 529 NaClDescAcceptConnNotImplemented, |
| 530 NaClDescPostNotImplemented, | 530 NaClDescPostNotImplemented, |
| 531 NaClDescSemWaitNotImplemented, | 531 NaClDescSemWaitNotImplemented, |
| 532 NaClDescGetValueNotImplemented, | 532 NaClDescGetValueNotImplemented, |
| 533 }; | 533 }; |
| OLD | NEW |