Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / native_client / src / trusted / service_runtime / include / sys / nacl_list_mappings.h
1 /*
2  * Copyright (c) 2013 The Native Client Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 /*
8  * NaCl Memory Region
9  */
10
11 #ifndef _NATIVE_CLIENT_SRC_SERVICE_RUNTIME_INCLUDE_SYS_NACL_LIST_MAPPINGS_H_
12 #define _NATIVE_CLIENT_SRC_SERVICE_RUNTIME_INCLUDE_SYS_NACL_LIST_MAPPINGS_H_ 1
13
14 #if defined(NACL_IN_TOOLCHAIN_HEADERS)
15 # include <stdint.h>
16 #else
17 # include "native_client/src/include/portability.h"
18 #endif
19
20 struct NaClMemMappingInfo {
21   uint32_t start;
22   uint32_t size;
23   uint32_t prot;
24   uint32_t max_prot;
25   uint32_t vmmap_type;
26 };
27
28 #endif /* _NATIVE_CLIENT_SRC_SERVICE_RUNTIME_INCLUDE_SYS_NACL_LIST_MAPPINGS_H_ */