Coverage Report

Created: 2025-11-24 06:10

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libunwind/src/mi/init.c
Line
Count
Source
1
/* libunwind - a platform-independent unwind library
2
   Copyright (C) 2002-2005 Hewlett-Packard Co
3
        Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5
This file is part of libunwind.
6
7
Permission is hereby granted, free of charge, to any person obtaining
8
a copy of this software and associated documentation files (the
9
"Software"), to deal in the Software without restriction, including
10
without limitation the rights to use, copy, modify, merge, publish,
11
distribute, sublicense, and/or sell copies of the Software, and to
12
permit persons to whom the Software is furnished to do so, subject to
13
the following conditions:
14
15
The above copyright notice and this permission notice shall be
16
included in all copies or substantial portions of the Software.
17
18
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
25
26
#include "libunwind_i.h"
27
28
HIDDEN intrmask_t unwi_full_mask;
29
30
static const char rcsid[] UNUSED =
31
  "$Id: " PACKAGE_STRING " --- report bugs to " PACKAGE_BUGREPORT " $";
32
33
#if UNW_DEBUG
34
35
/* Must not be declared HIDDEN because libunwind.so and
36
   libunwind-PLATFORM.so will both define their own copies of this
37
   variable and we want to use only one or the other when both
38
   libraries are loaded.  */
39
long unwi_debug_level;
40
41
#endif /* UNW_DEBUG */
42
long unw_page_size;
43
static void
44
unw_init_page_size (void)
45
1
{
46
1
  errno = 0;
47
1
  long result = sysconf (_SC_PAGESIZE);
48
1
  if (result == -1)
49
0
    {
50
0
      if (errno != 0)
51
0
        {
52
0
          print_error ("Failed to get _SC_PAGESIZE: ");
53
0
          print_error (strerror(errno));
54
0
          print_error ("\n");
55
0
        }
56
0
        else
57
0
          print_error ("Failed to get _SC_PAGESIZE, errno was not set.\n");
58
59
0
      unw_page_size = 4096;
60
0
    }
61
1
  else
62
1
    {
63
1
      unw_page_size = result;
64
1
    }
65
1
}
66
67
HIDDEN void
68
mi_init (void)
69
1
{
70
#if UNW_DEBUG
71
  const char *str = getenv ("UNW_DEBUG_LEVEL");
72
73
  if (str)
74
    unwi_debug_level = atoi (str);
75
76
  if (unwi_debug_level > 0)
77
    {
78
      setbuf (stdout, NULL);
79
      setbuf (stderr, NULL);
80
    }
81
#endif
82
1
  unw_init_page_size();
83
  assert(sizeof(struct cursor) <= sizeof(unw_cursor_t));
84
1
}