mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-25 16:47:38 +01:00
freebsd: Consistently use symbolic name UNW_EUNSPEC for errors
This commit is contained in:
parent
69e300e8f6
commit
0fac4c8109
1 changed files with 4 additions and 4 deletions
|
@ -69,14 +69,14 @@ tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
|
||||||
len1 = len * 4 / 3;
|
len1 = len * 4 / 3;
|
||||||
buf = get_mem(len1);
|
buf = get_mem(len1);
|
||||||
if (buf == NULL)
|
if (buf == NULL)
|
||||||
return (-1);
|
return (-UNW_EUNSPEC);
|
||||||
len = len1;
|
len = len1;
|
||||||
error = sysctl(mib, 4, buf, &len, NULL, 0);
|
error = sysctl(mib, 4, buf, &len, NULL, 0);
|
||||||
if (error) {
|
if (error == -1) {
|
||||||
free_mem(buf, len1);
|
free_mem(buf, len1);
|
||||||
return (-1);
|
return (-UNW_EUNSPEC);
|
||||||
}
|
}
|
||||||
ret = -1;
|
ret = -UNW_EUNSPEC;
|
||||||
for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) {
|
for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) {
|
||||||
kv = (struct kinfo_vmentry *)(uintptr_t)bp;
|
kv = (struct kinfo_vmentry *)(uintptr_t)bp;
|
||||||
if (ip < kv->kve_start || ip >= kv->kve_end)
|
if (ip < kv->kve_start || ip >= kv->kve_end)
|
||||||
|
|
Loading…
Reference in a new issue