Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Convert enum smpi_process_state to enum class.
[simgrid.git] / src / xbt / memory_map.hpp
1 /* Copyright (c) 2007-2018. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_XBT_MEMORY_MAP_HPP
8 #define SIMGRID_XBT_MEMORY_MAP_HPP
9
10 #include <cstdint>
11 #include <string>
12 #include <vector>
13
14 #include <xbt/base.h>
15 #include <sys/types.h>
16
17 namespace simgrid {
18 namespace xbt {
19
20 /** An virtual memory map entry from /proc/$pid/maps */
21 struct VmMap {
22   std::uint64_t start_addr;
23   std::uint64_t end_addr;
24   int prot;                     /* Memory protection */
25   int flags;                    /* Additional memory flags */
26   std::uint64_t offset;         /* Offset in the file/whatever */
27   char dev_major;               /* Major of the device */
28   char dev_minor;               /* Minor of the device */
29   unsigned long inode;          /* Inode in the device */
30   std::string pathname;         /* Path name of the mapped file */
31 };
32
33 XBT_PRIVATE std::vector<VmMap> get_memory_map(pid_t pid);
34
35 }
36 }
37
38 #endif