libc_extra/android_linux/sys/prctl/
prctl_mm_map.rs

1// This file is part of libc-extra. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT. No part of libc-extra, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
2// Copyright © 2016-2018 The developers of libc-extra. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT.
3
4
5#[allow(missing_copy_implementations)]
6#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
7pub struct prctl_mm_map
8{
9	pub start_code: uint64_t,
10	pub end_code: uint64_t,
11	pub start_data: uint64_t,
12	pub end_data: uint64_t,
13	pub start_brk: uint64_t,
14	pub brk: uint64_t,
15	pub start_stack: uint64_t,
16	pub arg_start: uint64_t,
17	pub arg_end: uint64_t,
18	pub env_start: uint64_t,
19	pub env_end: uint64_t,
20	pub auxv: *mut uint64_t,
21	pub auxv_size: uint32_t,
22	pub exe_fd: uint32_t,
23}