/src/elfutils/lib/system.h
Line | Count | Source |
1 | | /* Declarations for common convenience functions. |
2 | | Copyright (C) 2006-2011 Red Hat, Inc. |
3 | | Copyright (C) 2022 Mark J. Wielaard <mark@klomp.org> |
4 | | This file is part of elfutils. |
5 | | |
6 | | This file is free software; you can redistribute it and/or modify |
7 | | it under the terms of either |
8 | | |
9 | | * the GNU Lesser General Public License as published by the Free |
10 | | Software Foundation; either version 3 of the License, or (at |
11 | | your option) any later version |
12 | | |
13 | | or |
14 | | |
15 | | * the GNU General Public License as published by the Free |
16 | | Software Foundation; either version 2 of the License, or (at |
17 | | your option) any later version |
18 | | |
19 | | or both in parallel, as here. |
20 | | |
21 | | elfutils is distributed in the hope that it will be useful, but |
22 | | WITHOUT ANY WARRANTY; without even the implied warranty of |
23 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
24 | | General Public License for more details. |
25 | | |
26 | | You should have received copies of the GNU General Public License and |
27 | | the GNU Lesser General Public License along with this program. If |
28 | | not, see <http://www.gnu.org/licenses/>. */ |
29 | | |
30 | | #ifndef LIB_SYSTEM_H |
31 | | #define LIB_SYSTEM_H 1 |
32 | | |
33 | | #include <config.h> |
34 | | |
35 | | #include <errno.h> |
36 | | #include <stddef.h> |
37 | | #include <stdint.h> |
38 | | #include <string.h> |
39 | | #include <stdarg.h> |
40 | | #include <stdlib.h> |
41 | | |
42 | | /* System dependent headers */ |
43 | | #include <byteswap.h> |
44 | | #include <endian.h> |
45 | | #include <sys/mman.h> |
46 | | #include <sys/param.h> |
47 | | #include <unistd.h> |
48 | | |
49 | | #if defined(HAVE_ERROR_H) |
50 | | #include <error.h> |
51 | | #elif defined(HAVE_ERR_H) |
52 | | extern int error_message_count; |
53 | | void error(int status, int errnum, const char *format, ...); |
54 | | #else |
55 | | #error "err.h or error.h must be available" |
56 | | #endif |
57 | | |
58 | | /* error (EXIT_FAILURE, ...) should be noreturn but on some systems it |
59 | | isn't. This may cause warnings about code that should not be reachable. |
60 | | So have an explicit error_exit wrapper that is noreturn (because it |
61 | | calls exit explicitly). */ |
62 | | #define error_exit(errnum,...) do { \ |
63 | | error (EXIT_FAILURE,errnum,__VA_ARGS__); \ |
64 | | exit (EXIT_FAILURE); \ |
65 | | } while (0) |
66 | | |
67 | | #if BYTE_ORDER == LITTLE_ENDIAN |
68 | 1.24k | # define LE32(n) (n) |
69 | | # define LE64(n) (n) |
70 | | # define BE32(n) bswap_32 (n) |
71 | | # define BE64(n) bswap_64 (n) |
72 | | #elif BYTE_ORDER == BIG_ENDIAN |
73 | | # define BE32(n) (n) |
74 | | # define BE64(n) (n) |
75 | | # define LE32(n) bswap_32 (n) |
76 | | # define LE64(n) bswap_64 (n) |
77 | | #else |
78 | | # error "Unknown byte order" |
79 | | #endif |
80 | | |
81 | | #ifndef MAX |
82 | | #define MAX(m, n) ((m) < (n) ? (n) : (m)) |
83 | | #endif |
84 | | |
85 | | #ifndef MIN |
86 | | #define MIN(m, n) ((m) < (n) ? (m) : (n)) |
87 | | #endif |
88 | | |
89 | | #if !HAVE_DECL_POWEROF2 |
90 | | #define powerof2(x) (((x) & ((x) - 1)) == 0) |
91 | | #endif |
92 | | |
93 | | #if !HAVE_DECL_MEMPCPY |
94 | | #define mempcpy(dest, src, n) \ |
95 | | ((void *) ((char *) memcpy (dest, src, n) + (size_t) n)) |
96 | | #endif |
97 | | |
98 | | #if !HAVE_DECL_REALLOCARRAY |
99 | | static inline void * |
100 | | reallocarray (void *ptr, size_t nmemb, size_t size) |
101 | | { |
102 | | if (size > 0 && nmemb > SIZE_MAX / size) |
103 | | { |
104 | | errno = ENOMEM; |
105 | | return NULL; |
106 | | } |
107 | | return realloc (ptr, nmemb * size); |
108 | | } |
109 | | #endif |
110 | | |
111 | | /* Return TRUE if the start of STR matches PREFIX, FALSE otherwise. */ |
112 | | |
113 | | static inline int |
114 | | startswith (const char *str, const char *prefix) |
115 | 880k | { |
116 | 880k | return strncmp (str, prefix, strlen (prefix)) == 0; |
117 | 880k | } Unexecuted instantiation: fuzz-libdwfl.c:startswith Unexecuted instantiation: dwfl_begin.c:startswith Unexecuted instantiation: dwfl_end.c:startswith Unexecuted instantiation: dwfl_error.c:startswith Unexecuted instantiation: dwfl_module.c:startswith Unexecuted instantiation: offline.c:startswith Unexecuted instantiation: dwfl_module_getdwarf.c:startswith Unexecuted instantiation: find-debuginfo.c:startswith Unexecuted instantiation: dwfl_build_id_find_debuginfo.c:startswith Unexecuted instantiation: libdwfl_crc32_file.c:startswith Unexecuted instantiation: open.c:startswith Unexecuted instantiation: image-header.c:startswith Unexecuted instantiation: dwfl_frame.c:startswith Unexecuted instantiation: frame_unwind.c:startswith Unexecuted instantiation: dwfl_frame_pc.c:startswith Unexecuted instantiation: dwfl_frame_regs.c:startswith Unexecuted instantiation: gzip.c:startswith Unexecuted instantiation: dwelf_elf_gnu_debuglink.c:startswith Unexecuted instantiation: dwelf_dwarf_gnu_debugaltlink.c:startswith Unexecuted instantiation: dwelf_elf_gnu_build_id.c:startswith Unexecuted instantiation: eblopenbackend.c:startswith Unexecuted instantiation: arm_symbol.c:startswith Unexecuted instantiation: aarch64_symbol.c:startswith Unexecuted instantiation: aarch64_initreg.c:startswith Unexecuted instantiation: sparc_initreg.c:startswith Unexecuted instantiation: ppc_initreg.c:startswith Unexecuted instantiation: s390_initreg.c:startswith Unexecuted instantiation: riscv_init.c:startswith Unexecuted instantiation: riscv_initreg.c:startswith Unexecuted instantiation: csky_initreg.c:startswith Unexecuted instantiation: loongarch_initreg.c:startswith Unexecuted instantiation: i386_disasm.c:startswith Unexecuted instantiation: x86_64_disasm.c:startswith Unexecuted instantiation: bpf_disasm.c:startswith Unexecuted instantiation: riscv_disasm.c:startswith dwarf_begin_elf.c:startswith Line | Count | Source | 115 | 880k | { | 116 | 880k | return strncmp (str, prefix, strlen (prefix)) == 0; | 117 | 880k | } |
Unexecuted instantiation: dwarf_end.c:startswith Unexecuted instantiation: dwarf_tag.c:startswith Unexecuted instantiation: dwarf_error.c:startswith Unexecuted instantiation: dwarf_attr.c:startswith Unexecuted instantiation: dwarf_abbrev_hash.c:startswith Unexecuted instantiation: dwarf_sig8_hash.c:startswith Unexecuted instantiation: dwarf_attr_integrate.c:startswith Unexecuted instantiation: dwarf_hasattr_integrate.c:startswith Unexecuted instantiation: dwarf_child.c:startswith Unexecuted instantiation: dwarf_formudata.c:startswith Unexecuted instantiation: dwarf_formref_die.c:startswith Unexecuted instantiation: dwarf_siblingof.c:startswith Unexecuted instantiation: dwarf_diecu.c:startswith Unexecuted instantiation: dwarf_hasattr.c:startswith Unexecuted instantiation: dwarf_bytesize.c:startswith Unexecuted instantiation: dwarf_bitsize.c:startswith Unexecuted instantiation: dwarf_formflag.c:startswith Unexecuted instantiation: libdw_findcu.c:startswith Unexecuted instantiation: libdw_form.c:startswith Unexecuted instantiation: libdw_alloc.c:startswith Unexecuted instantiation: frame-cache.c:startswith Unexecuted instantiation: dwarf_frame_cfa.c:startswith Unexecuted instantiation: dwarf_frame_register.c:startswith Unexecuted instantiation: dwarf_cfi_addrframe.c:startswith Unexecuted instantiation: dwarf_cfi_end.c:startswith Unexecuted instantiation: dwarf_aggregate_size.c:startswith Unexecuted instantiation: dwarf_getalt.c:startswith Unexecuted instantiation: dwarf_setalt.c:startswith Unexecuted instantiation: dwarf_peel_type.c:startswith Unexecuted instantiation: dwarf_default_lower_bound.c:startswith Unexecuted instantiation: libdw_find_split_unit.c:startswith Unexecuted instantiation: dwfl_report_elf.c:startswith Unexecuted instantiation: relocate.c:startswith Unexecuted instantiation: dwfl_module_build_id.c:startswith Unexecuted instantiation: dwfl_build_id_find_elf.c:startswith Unexecuted instantiation: dwfl_addrmodule.c:startswith Unexecuted instantiation: libdwfl_crc32.c:startswith Unexecuted instantiation: dwfl_module_dwarf_cfi.c:startswith Unexecuted instantiation: dwfl_module_eh_cfi.c:startswith Unexecuted instantiation: dwarf_begin.c:startswith Unexecuted instantiation: dwarf_getabbrev.c:startswith Unexecuted instantiation: dwarf_nextcu.c:startswith Unexecuted instantiation: dwarf_offdie.c:startswith Unexecuted instantiation: dwarf_formstring.c:startswith Unexecuted instantiation: dwarf_haschildren.c:startswith Unexecuted instantiation: dwarf_formsdata.c:startswith Unexecuted instantiation: dwarf_formref.c:startswith Unexecuted instantiation: dwarf_srclang.c:startswith Unexecuted instantiation: dwarf_getlocation.c:startswith Unexecuted instantiation: fde.c:startswith Unexecuted instantiation: cfi.c:startswith Unexecuted instantiation: dwarf_getcfi.c:startswith Unexecuted instantiation: dwarf_getcfi_elf.c:startswith Unexecuted instantiation: dwarf_get_units.c:startswith Unexecuted instantiation: segment.c:startswith Unexecuted instantiation: dwarf_formaddr.c:startswith Unexecuted instantiation: dwarf_lowpc.c:startswith Unexecuted instantiation: dwarf_ranges.c:startswith Unexecuted instantiation: dwarf_formblock.c:startswith Unexecuted instantiation: dwarf_next_cfi.c:startswith Unexecuted instantiation: cie.c:startswith Unexecuted instantiation: dwarf_highpc.c:startswith Unexecuted instantiation: elf_version.c:startswith Unexecuted instantiation: elf_error.c:startswith Unexecuted instantiation: elf_begin.c:startswith Unexecuted instantiation: elf_next.c:startswith Unexecuted instantiation: elf_end.c:startswith Unexecuted instantiation: elf_kind.c:startswith Unexecuted instantiation: gelf_getclass.c:startswith Unexecuted instantiation: elf_getident.c:startswith Unexecuted instantiation: gelf_fsize.c:startswith Unexecuted instantiation: elf64_xlatetom.c:startswith Unexecuted instantiation: gelf_xlate.c:startswith Unexecuted instantiation: gelf_getehdr.c:startswith Unexecuted instantiation: gelf_getphdr.c:startswith Unexecuted instantiation: elf_getarhdr.c:startswith Unexecuted instantiation: elf_rawfile.c:startswith Unexecuted instantiation: elf_readall.c:startswith Unexecuted instantiation: elf_cntl.c:startswith Unexecuted instantiation: elf_getscn.c:startswith Unexecuted instantiation: elf_nextscn.c:startswith Unexecuted instantiation: elf_ndxscn.c:startswith Unexecuted instantiation: gelf_getshdr.c:startswith Unexecuted instantiation: gelf_update_shdr.c:startswith Unexecuted instantiation: elf_strptr.c:startswith Unexecuted instantiation: elf_rawdata.c:startswith Unexecuted instantiation: elf_getdata.c:startswith Unexecuted instantiation: elf_getdata_rawchunk.c:startswith Unexecuted instantiation: elf_memory.c:startswith Unexecuted instantiation: gelf_getrel.c:startswith Unexecuted instantiation: gelf_getrela.c:startswith Unexecuted instantiation: gelf_update_rel.c:startswith Unexecuted instantiation: gelf_update_rela.c:startswith Unexecuted instantiation: gelf_getdyn.c:startswith Unexecuted instantiation: gelf_getnote.c:startswith Unexecuted instantiation: gelf_xlatetof.c:startswith Unexecuted instantiation: gelf_xlatetom.c:startswith Unexecuted instantiation: gelf_getsymshndx.c:startswith Unexecuted instantiation: elf_getphdrnum.c:startswith Unexecuted instantiation: elf_getshdrnum.c:startswith Unexecuted instantiation: elf_getshdrstrndx.c:startswith Unexecuted instantiation: gelf_offscn.c:startswith Unexecuted instantiation: elf_compress.c:startswith Unexecuted instantiation: elf_compress_gnu.c:startswith Unexecuted instantiation: elf32_xlatetof.c:startswith Unexecuted instantiation: elf32_xlatetom.c:startswith Unexecuted instantiation: elf64_xlatetof.c:startswith Unexecuted instantiation: elf32_getphdr.c:startswith Unexecuted instantiation: elf64_getphdr.c:startswith Unexecuted instantiation: elf32_getshdr.c:startswith Unexecuted instantiation: elf64_getshdr.c:startswith Unexecuted instantiation: elf32_offscn.c:startswith Unexecuted instantiation: elf64_offscn.c:startswith Unexecuted instantiation: gelf_getchdr.c:startswith Unexecuted instantiation: elf32_getchdr.c:startswith Unexecuted instantiation: elf64_getchdr.c:startswith |
118 | | |
119 | | /* A special gettext function we use if the strings are too short. */ |
120 | | #define sgettext(Str) \ |
121 | | ({ const char *__res = strrchr (_(Str), '|'); \ |
122 | | __res ? __res + 1 : Str; }) |
123 | | |
124 | | #define gettext_noop(Str) Str |
125 | | |
126 | | #ifndef TEMP_FAILURE_RETRY |
127 | | #define TEMP_FAILURE_RETRY(expression) \ |
128 | | ({ ssize_t __res; \ |
129 | | do \ |
130 | | __res = expression; \ |
131 | | while (__res == -1 && errno == EINTR); \ |
132 | | __res; }) |
133 | | #endif |
134 | | |
135 | | #ifndef ACCESSPERMS |
136 | | #define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO) /* 0777 */ |
137 | | #endif |
138 | | |
139 | | #ifndef ALLPERMS |
140 | | #define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO) /* 07777 */ |
141 | | #endif |
142 | | |
143 | | #ifndef DEFFILEMODE |
144 | | #define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)/* 0666 */ |
145 | | #endif |
146 | | |
147 | | static inline ssize_t __attribute__ ((unused)) |
148 | | pwrite_retry (int fd, const void *buf, size_t len, off_t off) |
149 | 0 | { |
150 | 0 | ssize_t recvd = 0; |
151 | 0 |
|
152 | 0 | do |
153 | 0 | { |
154 | 0 | ssize_t ret = TEMP_FAILURE_RETRY (pwrite (fd, ((char *)buf) + recvd, len - recvd, |
155 | 0 | off + recvd)); |
156 | 0 | if (ret <= 0) |
157 | 0 | return ret < 0 ? ret : recvd; |
158 | 0 |
|
159 | 0 | recvd += ret; |
160 | 0 | } |
161 | 0 | while ((size_t) recvd < len); |
162 | 0 |
|
163 | 0 | return recvd; |
164 | 0 | } Unexecuted instantiation: fuzz-libdwfl.c:pwrite_retry Unexecuted instantiation: dwfl_begin.c:pwrite_retry Unexecuted instantiation: dwfl_end.c:pwrite_retry Unexecuted instantiation: dwfl_error.c:pwrite_retry Unexecuted instantiation: dwfl_module.c:pwrite_retry Unexecuted instantiation: offline.c:pwrite_retry Unexecuted instantiation: dwfl_module_getdwarf.c:pwrite_retry Unexecuted instantiation: find-debuginfo.c:pwrite_retry Unexecuted instantiation: dwfl_build_id_find_debuginfo.c:pwrite_retry Unexecuted instantiation: libdwfl_crc32_file.c:pwrite_retry Unexecuted instantiation: open.c:pwrite_retry Unexecuted instantiation: image-header.c:pwrite_retry Unexecuted instantiation: dwfl_frame.c:pwrite_retry Unexecuted instantiation: frame_unwind.c:pwrite_retry Unexecuted instantiation: dwfl_frame_pc.c:pwrite_retry Unexecuted instantiation: dwfl_frame_regs.c:pwrite_retry Unexecuted instantiation: gzip.c:pwrite_retry Unexecuted instantiation: dwelf_elf_gnu_debuglink.c:pwrite_retry Unexecuted instantiation: dwelf_dwarf_gnu_debugaltlink.c:pwrite_retry Unexecuted instantiation: dwelf_elf_gnu_build_id.c:pwrite_retry Unexecuted instantiation: eblopenbackend.c:pwrite_retry Unexecuted instantiation: arm_symbol.c:pwrite_retry Unexecuted instantiation: aarch64_symbol.c:pwrite_retry Unexecuted instantiation: aarch64_initreg.c:pwrite_retry Unexecuted instantiation: sparc_initreg.c:pwrite_retry Unexecuted instantiation: ppc_initreg.c:pwrite_retry Unexecuted instantiation: s390_initreg.c:pwrite_retry Unexecuted instantiation: riscv_init.c:pwrite_retry Unexecuted instantiation: riscv_initreg.c:pwrite_retry Unexecuted instantiation: csky_initreg.c:pwrite_retry Unexecuted instantiation: loongarch_initreg.c:pwrite_retry Unexecuted instantiation: i386_disasm.c:pwrite_retry Unexecuted instantiation: x86_64_disasm.c:pwrite_retry Unexecuted instantiation: bpf_disasm.c:pwrite_retry Unexecuted instantiation: riscv_disasm.c:pwrite_retry Unexecuted instantiation: dwarf_begin_elf.c:pwrite_retry Unexecuted instantiation: dwarf_end.c:pwrite_retry Unexecuted instantiation: dwarf_tag.c:pwrite_retry Unexecuted instantiation: dwarf_error.c:pwrite_retry Unexecuted instantiation: dwarf_attr.c:pwrite_retry Unexecuted instantiation: dwarf_abbrev_hash.c:pwrite_retry Unexecuted instantiation: dwarf_sig8_hash.c:pwrite_retry Unexecuted instantiation: dwarf_attr_integrate.c:pwrite_retry Unexecuted instantiation: dwarf_hasattr_integrate.c:pwrite_retry Unexecuted instantiation: dwarf_child.c:pwrite_retry Unexecuted instantiation: dwarf_formudata.c:pwrite_retry Unexecuted instantiation: dwarf_formref_die.c:pwrite_retry Unexecuted instantiation: dwarf_siblingof.c:pwrite_retry Unexecuted instantiation: dwarf_diecu.c:pwrite_retry Unexecuted instantiation: dwarf_hasattr.c:pwrite_retry Unexecuted instantiation: dwarf_bytesize.c:pwrite_retry Unexecuted instantiation: dwarf_bitsize.c:pwrite_retry Unexecuted instantiation: dwarf_formflag.c:pwrite_retry Unexecuted instantiation: libdw_findcu.c:pwrite_retry Unexecuted instantiation: libdw_form.c:pwrite_retry Unexecuted instantiation: libdw_alloc.c:pwrite_retry Unexecuted instantiation: frame-cache.c:pwrite_retry Unexecuted instantiation: dwarf_frame_cfa.c:pwrite_retry Unexecuted instantiation: dwarf_frame_register.c:pwrite_retry Unexecuted instantiation: dwarf_cfi_addrframe.c:pwrite_retry Unexecuted instantiation: dwarf_cfi_end.c:pwrite_retry Unexecuted instantiation: dwarf_aggregate_size.c:pwrite_retry Unexecuted instantiation: dwarf_getalt.c:pwrite_retry Unexecuted instantiation: dwarf_setalt.c:pwrite_retry Unexecuted instantiation: dwarf_peel_type.c:pwrite_retry Unexecuted instantiation: dwarf_default_lower_bound.c:pwrite_retry Unexecuted instantiation: libdw_find_split_unit.c:pwrite_retry Unexecuted instantiation: dwfl_report_elf.c:pwrite_retry Unexecuted instantiation: relocate.c:pwrite_retry Unexecuted instantiation: dwfl_module_build_id.c:pwrite_retry Unexecuted instantiation: dwfl_build_id_find_elf.c:pwrite_retry Unexecuted instantiation: dwfl_addrmodule.c:pwrite_retry Unexecuted instantiation: libdwfl_crc32.c:pwrite_retry Unexecuted instantiation: dwfl_module_dwarf_cfi.c:pwrite_retry Unexecuted instantiation: dwfl_module_eh_cfi.c:pwrite_retry Unexecuted instantiation: dwarf_begin.c:pwrite_retry Unexecuted instantiation: dwarf_getabbrev.c:pwrite_retry Unexecuted instantiation: dwarf_nextcu.c:pwrite_retry Unexecuted instantiation: dwarf_offdie.c:pwrite_retry Unexecuted instantiation: dwarf_formstring.c:pwrite_retry Unexecuted instantiation: dwarf_haschildren.c:pwrite_retry Unexecuted instantiation: dwarf_formsdata.c:pwrite_retry Unexecuted instantiation: dwarf_formref.c:pwrite_retry Unexecuted instantiation: dwarf_srclang.c:pwrite_retry Unexecuted instantiation: dwarf_getlocation.c:pwrite_retry Unexecuted instantiation: fde.c:pwrite_retry Unexecuted instantiation: cfi.c:pwrite_retry Unexecuted instantiation: dwarf_getcfi.c:pwrite_retry Unexecuted instantiation: dwarf_getcfi_elf.c:pwrite_retry Unexecuted instantiation: dwarf_get_units.c:pwrite_retry Unexecuted instantiation: segment.c:pwrite_retry Unexecuted instantiation: dwarf_formaddr.c:pwrite_retry Unexecuted instantiation: dwarf_lowpc.c:pwrite_retry Unexecuted instantiation: dwarf_ranges.c:pwrite_retry Unexecuted instantiation: dwarf_formblock.c:pwrite_retry Unexecuted instantiation: dwarf_next_cfi.c:pwrite_retry Unexecuted instantiation: cie.c:pwrite_retry Unexecuted instantiation: dwarf_highpc.c:pwrite_retry Unexecuted instantiation: elf_version.c:pwrite_retry Unexecuted instantiation: elf_error.c:pwrite_retry Unexecuted instantiation: elf_begin.c:pwrite_retry Unexecuted instantiation: elf_next.c:pwrite_retry Unexecuted instantiation: elf_end.c:pwrite_retry Unexecuted instantiation: elf_kind.c:pwrite_retry Unexecuted instantiation: gelf_getclass.c:pwrite_retry Unexecuted instantiation: elf_getident.c:pwrite_retry Unexecuted instantiation: gelf_fsize.c:pwrite_retry Unexecuted instantiation: elf64_xlatetom.c:pwrite_retry Unexecuted instantiation: gelf_xlate.c:pwrite_retry Unexecuted instantiation: gelf_getehdr.c:pwrite_retry Unexecuted instantiation: gelf_getphdr.c:pwrite_retry Unexecuted instantiation: elf_getarhdr.c:pwrite_retry Unexecuted instantiation: elf_rawfile.c:pwrite_retry Unexecuted instantiation: elf_readall.c:pwrite_retry Unexecuted instantiation: elf_cntl.c:pwrite_retry Unexecuted instantiation: elf_getscn.c:pwrite_retry Unexecuted instantiation: elf_nextscn.c:pwrite_retry Unexecuted instantiation: elf_ndxscn.c:pwrite_retry Unexecuted instantiation: gelf_getshdr.c:pwrite_retry Unexecuted instantiation: gelf_update_shdr.c:pwrite_retry Unexecuted instantiation: elf_strptr.c:pwrite_retry Unexecuted instantiation: elf_rawdata.c:pwrite_retry Unexecuted instantiation: elf_getdata.c:pwrite_retry Unexecuted instantiation: elf_getdata_rawchunk.c:pwrite_retry Unexecuted instantiation: elf_memory.c:pwrite_retry Unexecuted instantiation: gelf_getrel.c:pwrite_retry Unexecuted instantiation: gelf_getrela.c:pwrite_retry Unexecuted instantiation: gelf_update_rel.c:pwrite_retry Unexecuted instantiation: gelf_update_rela.c:pwrite_retry Unexecuted instantiation: gelf_getdyn.c:pwrite_retry Unexecuted instantiation: gelf_getnote.c:pwrite_retry Unexecuted instantiation: gelf_xlatetof.c:pwrite_retry Unexecuted instantiation: gelf_xlatetom.c:pwrite_retry Unexecuted instantiation: gelf_getsymshndx.c:pwrite_retry Unexecuted instantiation: elf_getphdrnum.c:pwrite_retry Unexecuted instantiation: elf_getshdrnum.c:pwrite_retry Unexecuted instantiation: elf_getshdrstrndx.c:pwrite_retry Unexecuted instantiation: gelf_offscn.c:pwrite_retry Unexecuted instantiation: elf_compress.c:pwrite_retry Unexecuted instantiation: elf_compress_gnu.c:pwrite_retry Unexecuted instantiation: elf32_xlatetof.c:pwrite_retry Unexecuted instantiation: elf32_xlatetom.c:pwrite_retry Unexecuted instantiation: elf64_xlatetof.c:pwrite_retry Unexecuted instantiation: elf32_getphdr.c:pwrite_retry Unexecuted instantiation: elf64_getphdr.c:pwrite_retry Unexecuted instantiation: elf32_getshdr.c:pwrite_retry Unexecuted instantiation: elf64_getshdr.c:pwrite_retry Unexecuted instantiation: elf32_offscn.c:pwrite_retry Unexecuted instantiation: elf64_offscn.c:pwrite_retry Unexecuted instantiation: gelf_getchdr.c:pwrite_retry Unexecuted instantiation: elf32_getchdr.c:pwrite_retry Unexecuted instantiation: elf64_getchdr.c:pwrite_retry |
165 | | |
166 | | static inline ssize_t __attribute__ ((unused)) |
167 | | write_retry (int fd, const void *buf, size_t len) |
168 | 11.3k | { |
169 | 11.3k | ssize_t recvd = 0; |
170 | | |
171 | 11.3k | do |
172 | 11.3k | { |
173 | 11.3k | ssize_t ret = TEMP_FAILURE_RETRY (write (fd, ((char *)buf) + recvd, len - recvd)); |
174 | 11.3k | if (ret <= 0) |
175 | 0 | return ret < 0 ? ret : recvd; |
176 | | |
177 | 11.3k | recvd += ret; |
178 | 11.3k | } |
179 | 11.3k | while ((size_t) recvd < len); |
180 | | |
181 | 11.3k | return recvd; |
182 | 11.3k | } fuzz-libdwfl.c:write_retry Line | Count | Source | 168 | 11.3k | { | 169 | 11.3k | ssize_t recvd = 0; | 170 | | | 171 | 11.3k | do | 172 | 11.3k | { | 173 | 11.3k | ssize_t ret = TEMP_FAILURE_RETRY (write (fd, ((char *)buf) + recvd, len - recvd)); | 174 | 11.3k | if (ret <= 0) | 175 | 0 | return ret < 0 ? ret : recvd; | 176 | | | 177 | 11.3k | recvd += ret; | 178 | 11.3k | } | 179 | 11.3k | while ((size_t) recvd < len); | 180 | | | 181 | 11.3k | return recvd; | 182 | 11.3k | } |
Unexecuted instantiation: dwfl_begin.c:write_retry Unexecuted instantiation: dwfl_end.c:write_retry Unexecuted instantiation: dwfl_error.c:write_retry Unexecuted instantiation: dwfl_module.c:write_retry Unexecuted instantiation: offline.c:write_retry Unexecuted instantiation: dwfl_module_getdwarf.c:write_retry Unexecuted instantiation: find-debuginfo.c:write_retry Unexecuted instantiation: dwfl_build_id_find_debuginfo.c:write_retry Unexecuted instantiation: libdwfl_crc32_file.c:write_retry Unexecuted instantiation: open.c:write_retry Unexecuted instantiation: image-header.c:write_retry Unexecuted instantiation: dwfl_frame.c:write_retry Unexecuted instantiation: frame_unwind.c:write_retry Unexecuted instantiation: dwfl_frame_pc.c:write_retry Unexecuted instantiation: dwfl_frame_regs.c:write_retry Unexecuted instantiation: gzip.c:write_retry Unexecuted instantiation: dwelf_elf_gnu_debuglink.c:write_retry Unexecuted instantiation: dwelf_dwarf_gnu_debugaltlink.c:write_retry Unexecuted instantiation: dwelf_elf_gnu_build_id.c:write_retry Unexecuted instantiation: eblopenbackend.c:write_retry Unexecuted instantiation: arm_symbol.c:write_retry Unexecuted instantiation: aarch64_symbol.c:write_retry Unexecuted instantiation: aarch64_initreg.c:write_retry Unexecuted instantiation: sparc_initreg.c:write_retry Unexecuted instantiation: ppc_initreg.c:write_retry Unexecuted instantiation: s390_initreg.c:write_retry Unexecuted instantiation: riscv_init.c:write_retry Unexecuted instantiation: riscv_initreg.c:write_retry Unexecuted instantiation: csky_initreg.c:write_retry Unexecuted instantiation: loongarch_initreg.c:write_retry Unexecuted instantiation: i386_disasm.c:write_retry Unexecuted instantiation: x86_64_disasm.c:write_retry Unexecuted instantiation: bpf_disasm.c:write_retry Unexecuted instantiation: riscv_disasm.c:write_retry Unexecuted instantiation: dwarf_begin_elf.c:write_retry Unexecuted instantiation: dwarf_end.c:write_retry Unexecuted instantiation: dwarf_tag.c:write_retry Unexecuted instantiation: dwarf_error.c:write_retry Unexecuted instantiation: dwarf_attr.c:write_retry Unexecuted instantiation: dwarf_abbrev_hash.c:write_retry Unexecuted instantiation: dwarf_sig8_hash.c:write_retry Unexecuted instantiation: dwarf_attr_integrate.c:write_retry Unexecuted instantiation: dwarf_hasattr_integrate.c:write_retry Unexecuted instantiation: dwarf_child.c:write_retry Unexecuted instantiation: dwarf_formudata.c:write_retry Unexecuted instantiation: dwarf_formref_die.c:write_retry Unexecuted instantiation: dwarf_siblingof.c:write_retry Unexecuted instantiation: dwarf_diecu.c:write_retry Unexecuted instantiation: dwarf_hasattr.c:write_retry Unexecuted instantiation: dwarf_bytesize.c:write_retry Unexecuted instantiation: dwarf_bitsize.c:write_retry Unexecuted instantiation: dwarf_formflag.c:write_retry Unexecuted instantiation: libdw_findcu.c:write_retry Unexecuted instantiation: libdw_form.c:write_retry Unexecuted instantiation: libdw_alloc.c:write_retry Unexecuted instantiation: frame-cache.c:write_retry Unexecuted instantiation: dwarf_frame_cfa.c:write_retry Unexecuted instantiation: dwarf_frame_register.c:write_retry Unexecuted instantiation: dwarf_cfi_addrframe.c:write_retry Unexecuted instantiation: dwarf_cfi_end.c:write_retry Unexecuted instantiation: dwarf_aggregate_size.c:write_retry Unexecuted instantiation: dwarf_getalt.c:write_retry Unexecuted instantiation: dwarf_setalt.c:write_retry Unexecuted instantiation: dwarf_peel_type.c:write_retry Unexecuted instantiation: dwarf_default_lower_bound.c:write_retry Unexecuted instantiation: libdw_find_split_unit.c:write_retry Unexecuted instantiation: dwfl_report_elf.c:write_retry Unexecuted instantiation: relocate.c:write_retry Unexecuted instantiation: dwfl_module_build_id.c:write_retry Unexecuted instantiation: dwfl_build_id_find_elf.c:write_retry Unexecuted instantiation: dwfl_addrmodule.c:write_retry Unexecuted instantiation: libdwfl_crc32.c:write_retry Unexecuted instantiation: dwfl_module_dwarf_cfi.c:write_retry Unexecuted instantiation: dwfl_module_eh_cfi.c:write_retry Unexecuted instantiation: dwarf_begin.c:write_retry Unexecuted instantiation: dwarf_getabbrev.c:write_retry Unexecuted instantiation: dwarf_nextcu.c:write_retry Unexecuted instantiation: dwarf_offdie.c:write_retry Unexecuted instantiation: dwarf_formstring.c:write_retry Unexecuted instantiation: dwarf_haschildren.c:write_retry Unexecuted instantiation: dwarf_formsdata.c:write_retry Unexecuted instantiation: dwarf_formref.c:write_retry Unexecuted instantiation: dwarf_srclang.c:write_retry Unexecuted instantiation: dwarf_getlocation.c:write_retry Unexecuted instantiation: fde.c:write_retry Unexecuted instantiation: cfi.c:write_retry Unexecuted instantiation: dwarf_getcfi.c:write_retry Unexecuted instantiation: dwarf_getcfi_elf.c:write_retry Unexecuted instantiation: dwarf_get_units.c:write_retry Unexecuted instantiation: segment.c:write_retry Unexecuted instantiation: dwarf_formaddr.c:write_retry Unexecuted instantiation: dwarf_lowpc.c:write_retry Unexecuted instantiation: dwarf_ranges.c:write_retry Unexecuted instantiation: dwarf_formblock.c:write_retry Unexecuted instantiation: dwarf_next_cfi.c:write_retry Unexecuted instantiation: cie.c:write_retry Unexecuted instantiation: dwarf_highpc.c:write_retry Unexecuted instantiation: elf_version.c:write_retry Unexecuted instantiation: elf_error.c:write_retry Unexecuted instantiation: elf_begin.c:write_retry Unexecuted instantiation: elf_next.c:write_retry Unexecuted instantiation: elf_end.c:write_retry Unexecuted instantiation: elf_kind.c:write_retry Unexecuted instantiation: gelf_getclass.c:write_retry Unexecuted instantiation: elf_getident.c:write_retry Unexecuted instantiation: gelf_fsize.c:write_retry Unexecuted instantiation: elf64_xlatetom.c:write_retry Unexecuted instantiation: gelf_xlate.c:write_retry Unexecuted instantiation: gelf_getehdr.c:write_retry Unexecuted instantiation: gelf_getphdr.c:write_retry Unexecuted instantiation: elf_getarhdr.c:write_retry Unexecuted instantiation: elf_rawfile.c:write_retry Unexecuted instantiation: elf_readall.c:write_retry Unexecuted instantiation: elf_cntl.c:write_retry Unexecuted instantiation: elf_getscn.c:write_retry Unexecuted instantiation: elf_nextscn.c:write_retry Unexecuted instantiation: elf_ndxscn.c:write_retry Unexecuted instantiation: gelf_getshdr.c:write_retry Unexecuted instantiation: gelf_update_shdr.c:write_retry Unexecuted instantiation: elf_strptr.c:write_retry Unexecuted instantiation: elf_rawdata.c:write_retry Unexecuted instantiation: elf_getdata.c:write_retry Unexecuted instantiation: elf_getdata_rawchunk.c:write_retry Unexecuted instantiation: elf_memory.c:write_retry Unexecuted instantiation: gelf_getrel.c:write_retry Unexecuted instantiation: gelf_getrela.c:write_retry Unexecuted instantiation: gelf_update_rel.c:write_retry Unexecuted instantiation: gelf_update_rela.c:write_retry Unexecuted instantiation: gelf_getdyn.c:write_retry Unexecuted instantiation: gelf_getnote.c:write_retry Unexecuted instantiation: gelf_xlatetof.c:write_retry Unexecuted instantiation: gelf_xlatetom.c:write_retry Unexecuted instantiation: gelf_getsymshndx.c:write_retry Unexecuted instantiation: elf_getphdrnum.c:write_retry Unexecuted instantiation: elf_getshdrnum.c:write_retry Unexecuted instantiation: elf_getshdrstrndx.c:write_retry Unexecuted instantiation: gelf_offscn.c:write_retry Unexecuted instantiation: elf_compress.c:write_retry Unexecuted instantiation: elf_compress_gnu.c:write_retry Unexecuted instantiation: elf32_xlatetof.c:write_retry Unexecuted instantiation: elf32_xlatetom.c:write_retry Unexecuted instantiation: elf64_xlatetof.c:write_retry Unexecuted instantiation: elf32_getphdr.c:write_retry Unexecuted instantiation: elf64_getphdr.c:write_retry Unexecuted instantiation: elf32_getshdr.c:write_retry Unexecuted instantiation: elf64_getshdr.c:write_retry Unexecuted instantiation: elf32_offscn.c:write_retry Unexecuted instantiation: elf64_offscn.c:write_retry Unexecuted instantiation: gelf_getchdr.c:write_retry Unexecuted instantiation: elf32_getchdr.c:write_retry Unexecuted instantiation: elf64_getchdr.c:write_retry |
183 | | |
184 | | static inline ssize_t __attribute__ ((unused)) |
185 | | pread_retry (int fd, void *buf, size_t len, off_t off) |
186 | 21 | { |
187 | 21 | ssize_t recvd = 0; |
188 | | |
189 | 21 | do |
190 | 21 | { |
191 | 21 | ssize_t ret = TEMP_FAILURE_RETRY (pread (fd, ((char *)buf) + recvd, len - recvd, |
192 | 21 | off + recvd)); |
193 | 21 | if (ret <= 0) |
194 | 21 | return ret < 0 ? ret : recvd; |
195 | | |
196 | 0 | recvd += ret; |
197 | 0 | } |
198 | 21 | while ((size_t) recvd < len); |
199 | | |
200 | 0 | return recvd; |
201 | 21 | } Unexecuted instantiation: fuzz-libdwfl.c:pread_retry Unexecuted instantiation: dwfl_begin.c:pread_retry Unexecuted instantiation: dwfl_end.c:pread_retry Unexecuted instantiation: dwfl_error.c:pread_retry Unexecuted instantiation: dwfl_module.c:pread_retry Unexecuted instantiation: offline.c:pread_retry Unexecuted instantiation: dwfl_module_getdwarf.c:pread_retry Unexecuted instantiation: find-debuginfo.c:pread_retry Unexecuted instantiation: dwfl_build_id_find_debuginfo.c:pread_retry Unexecuted instantiation: libdwfl_crc32_file.c:pread_retry Unexecuted instantiation: open.c:pread_retry Unexecuted instantiation: image-header.c:pread_retry Unexecuted instantiation: dwfl_frame.c:pread_retry Unexecuted instantiation: frame_unwind.c:pread_retry Unexecuted instantiation: dwfl_frame_pc.c:pread_retry Unexecuted instantiation: dwfl_frame_regs.c:pread_retry Unexecuted instantiation: gzip.c:pread_retry Unexecuted instantiation: dwelf_elf_gnu_debuglink.c:pread_retry Unexecuted instantiation: dwelf_dwarf_gnu_debugaltlink.c:pread_retry Unexecuted instantiation: dwelf_elf_gnu_build_id.c:pread_retry Unexecuted instantiation: eblopenbackend.c:pread_retry Unexecuted instantiation: arm_symbol.c:pread_retry Unexecuted instantiation: aarch64_symbol.c:pread_retry Unexecuted instantiation: aarch64_initreg.c:pread_retry Unexecuted instantiation: sparc_initreg.c:pread_retry Unexecuted instantiation: ppc_initreg.c:pread_retry Unexecuted instantiation: s390_initreg.c:pread_retry Unexecuted instantiation: riscv_init.c:pread_retry Unexecuted instantiation: riscv_initreg.c:pread_retry Unexecuted instantiation: csky_initreg.c:pread_retry Unexecuted instantiation: loongarch_initreg.c:pread_retry Unexecuted instantiation: i386_disasm.c:pread_retry Unexecuted instantiation: x86_64_disasm.c:pread_retry Unexecuted instantiation: bpf_disasm.c:pread_retry Unexecuted instantiation: riscv_disasm.c:pread_retry Unexecuted instantiation: dwarf_begin_elf.c:pread_retry Unexecuted instantiation: dwarf_end.c:pread_retry Unexecuted instantiation: dwarf_tag.c:pread_retry Unexecuted instantiation: dwarf_error.c:pread_retry Unexecuted instantiation: dwarf_attr.c:pread_retry Unexecuted instantiation: dwarf_abbrev_hash.c:pread_retry Unexecuted instantiation: dwarf_sig8_hash.c:pread_retry Unexecuted instantiation: dwarf_attr_integrate.c:pread_retry Unexecuted instantiation: dwarf_hasattr_integrate.c:pread_retry Unexecuted instantiation: dwarf_child.c:pread_retry Unexecuted instantiation: dwarf_formudata.c:pread_retry Unexecuted instantiation: dwarf_formref_die.c:pread_retry Unexecuted instantiation: dwarf_siblingof.c:pread_retry Unexecuted instantiation: dwarf_diecu.c:pread_retry Unexecuted instantiation: dwarf_hasattr.c:pread_retry Unexecuted instantiation: dwarf_bytesize.c:pread_retry Unexecuted instantiation: dwarf_bitsize.c:pread_retry Unexecuted instantiation: dwarf_formflag.c:pread_retry Unexecuted instantiation: libdw_findcu.c:pread_retry Unexecuted instantiation: libdw_form.c:pread_retry Unexecuted instantiation: libdw_alloc.c:pread_retry Unexecuted instantiation: frame-cache.c:pread_retry Unexecuted instantiation: dwarf_frame_cfa.c:pread_retry Unexecuted instantiation: dwarf_frame_register.c:pread_retry Unexecuted instantiation: dwarf_cfi_addrframe.c:pread_retry Unexecuted instantiation: dwarf_cfi_end.c:pread_retry Unexecuted instantiation: dwarf_aggregate_size.c:pread_retry Unexecuted instantiation: dwarf_getalt.c:pread_retry Unexecuted instantiation: dwarf_setalt.c:pread_retry Unexecuted instantiation: dwarf_peel_type.c:pread_retry Unexecuted instantiation: dwarf_default_lower_bound.c:pread_retry Unexecuted instantiation: libdw_find_split_unit.c:pread_retry Unexecuted instantiation: dwfl_report_elf.c:pread_retry Unexecuted instantiation: relocate.c:pread_retry Unexecuted instantiation: dwfl_module_build_id.c:pread_retry Unexecuted instantiation: dwfl_build_id_find_elf.c:pread_retry Unexecuted instantiation: dwfl_addrmodule.c:pread_retry Unexecuted instantiation: libdwfl_crc32.c:pread_retry Unexecuted instantiation: dwfl_module_dwarf_cfi.c:pread_retry Unexecuted instantiation: dwfl_module_eh_cfi.c:pread_retry Unexecuted instantiation: dwarf_begin.c:pread_retry Unexecuted instantiation: dwarf_getabbrev.c:pread_retry Unexecuted instantiation: dwarf_nextcu.c:pread_retry Unexecuted instantiation: dwarf_offdie.c:pread_retry Unexecuted instantiation: dwarf_formstring.c:pread_retry Unexecuted instantiation: dwarf_haschildren.c:pread_retry Unexecuted instantiation: dwarf_formsdata.c:pread_retry Unexecuted instantiation: dwarf_formref.c:pread_retry Unexecuted instantiation: dwarf_srclang.c:pread_retry Unexecuted instantiation: dwarf_getlocation.c:pread_retry Unexecuted instantiation: fde.c:pread_retry Unexecuted instantiation: cfi.c:pread_retry Unexecuted instantiation: dwarf_getcfi.c:pread_retry Unexecuted instantiation: dwarf_getcfi_elf.c:pread_retry Unexecuted instantiation: dwarf_get_units.c:pread_retry Unexecuted instantiation: segment.c:pread_retry Unexecuted instantiation: dwarf_formaddr.c:pread_retry Unexecuted instantiation: dwarf_lowpc.c:pread_retry Unexecuted instantiation: dwarf_ranges.c:pread_retry Unexecuted instantiation: dwarf_formblock.c:pread_retry Unexecuted instantiation: dwarf_next_cfi.c:pread_retry Unexecuted instantiation: cie.c:pread_retry Unexecuted instantiation: dwarf_highpc.c:pread_retry Unexecuted instantiation: elf_version.c:pread_retry Unexecuted instantiation: elf_error.c:pread_retry Line | Count | Source | 186 | 18 | { | 187 | 18 | ssize_t recvd = 0; | 188 | | | 189 | 18 | do | 190 | 18 | { | 191 | 18 | ssize_t ret = TEMP_FAILURE_RETRY (pread (fd, ((char *)buf) + recvd, len - recvd, | 192 | 18 | off + recvd)); | 193 | 18 | if (ret <= 0) | 194 | 18 | return ret < 0 ? ret : recvd; | 195 | | | 196 | 0 | recvd += ret; | 197 | 0 | } | 198 | 18 | while ((size_t) recvd < len); | 199 | | | 200 | 0 | return recvd; | 201 | 18 | } |
Unexecuted instantiation: elf_next.c:pread_retry Unexecuted instantiation: elf_end.c:pread_retry Unexecuted instantiation: elf_kind.c:pread_retry Unexecuted instantiation: gelf_getclass.c:pread_retry Unexecuted instantiation: elf_getident.c:pread_retry Unexecuted instantiation: gelf_fsize.c:pread_retry Unexecuted instantiation: elf64_xlatetom.c:pread_retry Unexecuted instantiation: gelf_xlate.c:pread_retry Unexecuted instantiation: gelf_getehdr.c:pread_retry Unexecuted instantiation: gelf_getphdr.c:pread_retry Unexecuted instantiation: elf_getarhdr.c:pread_retry Unexecuted instantiation: elf_rawfile.c:pread_retry Unexecuted instantiation: elf_readall.c:pread_retry Unexecuted instantiation: elf_cntl.c:pread_retry Unexecuted instantiation: elf_getscn.c:pread_retry Unexecuted instantiation: elf_nextscn.c:pread_retry Unexecuted instantiation: elf_ndxscn.c:pread_retry Unexecuted instantiation: gelf_getshdr.c:pread_retry Unexecuted instantiation: gelf_update_shdr.c:pread_retry Unexecuted instantiation: elf_strptr.c:pread_retry Unexecuted instantiation: elf_rawdata.c:pread_retry Unexecuted instantiation: elf_getdata.c:pread_retry Unexecuted instantiation: elf_getdata_rawchunk.c:pread_retry Unexecuted instantiation: elf_memory.c:pread_retry Unexecuted instantiation: gelf_getrel.c:pread_retry Unexecuted instantiation: gelf_getrela.c:pread_retry Unexecuted instantiation: gelf_update_rel.c:pread_retry Unexecuted instantiation: gelf_update_rela.c:pread_retry Unexecuted instantiation: gelf_getdyn.c:pread_retry Unexecuted instantiation: gelf_getnote.c:pread_retry Unexecuted instantiation: gelf_xlatetof.c:pread_retry Unexecuted instantiation: gelf_xlatetom.c:pread_retry Unexecuted instantiation: gelf_getsymshndx.c:pread_retry Unexecuted instantiation: elf_getphdrnum.c:pread_retry Unexecuted instantiation: elf_getshdrnum.c:pread_retry elf_getshdrstrndx.c:pread_retry Line | Count | Source | 186 | 3 | { | 187 | 3 | ssize_t recvd = 0; | 188 | | | 189 | 3 | do | 190 | 3 | { | 191 | 3 | ssize_t ret = TEMP_FAILURE_RETRY (pread (fd, ((char *)buf) + recvd, len - recvd, | 192 | 3 | off + recvd)); | 193 | 3 | if (ret <= 0) | 194 | 3 | return ret < 0 ? ret : recvd; | 195 | | | 196 | 0 | recvd += ret; | 197 | 0 | } | 198 | 3 | while ((size_t) recvd < len); | 199 | | | 200 | 0 | return recvd; | 201 | 3 | } |
Unexecuted instantiation: gelf_offscn.c:pread_retry Unexecuted instantiation: elf_compress.c:pread_retry Unexecuted instantiation: elf_compress_gnu.c:pread_retry Unexecuted instantiation: elf32_xlatetof.c:pread_retry Unexecuted instantiation: elf32_xlatetom.c:pread_retry Unexecuted instantiation: elf64_xlatetof.c:pread_retry Unexecuted instantiation: elf32_getphdr.c:pread_retry Unexecuted instantiation: elf64_getphdr.c:pread_retry Unexecuted instantiation: elf32_getshdr.c:pread_retry Unexecuted instantiation: elf64_getshdr.c:pread_retry Unexecuted instantiation: elf32_offscn.c:pread_retry Unexecuted instantiation: elf64_offscn.c:pread_retry Unexecuted instantiation: gelf_getchdr.c:pread_retry Unexecuted instantiation: elf32_getchdr.c:pread_retry Unexecuted instantiation: elf64_getchdr.c:pread_retry |
202 | | |
203 | | /* The demangler from libstdc++. */ |
204 | | extern char *__cxa_demangle (const char *mangled_name, char *output_buffer, |
205 | | size_t *length, int *status); |
206 | | |
207 | | /* A static assertion. This will cause a compile-time error if EXPR, |
208 | | which must be a compile-time constant, is false. */ |
209 | | |
210 | | #define eu_static_assert(expr) \ |
211 | 0 | extern int never_defined_just_used_for_checking[(expr) ? 1 : -1] \ |
212 | 0 | __attribute__ ((unused)) |
213 | | |
214 | | #endif /* system.h */ |