Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[DOC] Fixed even more errors.
[simgrid.git] / src / xbt / memory_map.hpp
1 /* Copyright (c) 2007-2015. 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, end_addr;
23   int prot;                     /* Memory protection */
24   int flags;                    /* Additional memory flags */
25   std::uint64_t offset;         /* Offset in the file/whatever */
26   char dev_major;               /* Major of the device */
27   char dev_minor;               /* Minor of the device */
28   unsigned long inode;          /* Inode in the device */
29   std::string pathname;         /* Path name of the mapped file */
30 };
31
32 XBT_PRIVATE std::vector<VmMap> get_memory_map(pid_t pid);
33
34 }
35 }
36
37 #endif