blob: 88ba4ac29cb90312b43b44cc8419cfae5825edb0 [file] [log] [blame]
mostang.com!davidm824d6612003-02-08 10:10:59 +00001/* libunwind - a platform-independent unwind library
2 Copyright (C) 2003 Hewlett-Packard Co
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5This file is part of libunwind.
6
7Permission is hereby granted, free of charge, to any person obtaining
8a copy of this software and associated documentation files (the
9"Software"), to deal in the Software without restriction, including
10without limitation the rights to use, copy, modify, merge, publish,
11distribute, sublicense, and/or sell copies of the Software, and to
12permit persons to whom the Software is furnished to do so, subject to
13the following conditions:
14
15The above copyright notice and this permission notice shall be
16included in all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
25
26#ifndef os_linux_h
27#define os_linux_h
28
29struct map_iterator
30 {
31 FILE *fp;
32 };
33
34static inline void
35maps_init (struct map_iterator *mi, pid_t pid)
36{
37 char path[PATH_MAX];
38
39 snprintf (path, sizeof (path), "/proc/%d/maps", pid);
40 mi->fp = fopen (path, "r");
41}
42
43static inline int
44maps_next (struct map_iterator *mi,
45 unsigned long *low, unsigned long *high, unsigned long *offset,
46 char *path)
47{
48 char line[256+PATH_MAX];
49
50 if (!mi->fp)
51 return 0;
52
53 while (fgets (line, sizeof (line), mi->fp))
54 {
55 if (sscanf (line, "%lx-%lx %*4c %lx %*x:%*x %*d %s\n",
56 low, high, offset, path) == 4)
57 return 1;
58 }
59 return 0;
60}
61
62static inline void
63maps_close (struct map_iterator *mi)
64{
65 fclose (mi->fp);
66 mi->fp = NULL;
67}
68
69#endif /* os_linux_h */