_dl_signal_error.
* sysdeps/mips/dl-machine.h (elf_machine_runtime_link_map): Likewise.
* sysdeps/powerpc/powerpc64/dl-machine.c
(_dl_reloc_overflow): Likewise.
* sysdeps/arm/dl-machine.h (elf_machine_rel): Likewise.
(elf_machine_rela): Likewise.
+2002-09-28 Roland McGrath <roland@redhat.com>
+
+ * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Use INTUSE for
+ _dl_signal_error.
+ * sysdeps/mips/dl-machine.h (elf_machine_runtime_link_map): Likewise.
+ * sysdeps/powerpc/powerpc64/dl-machine.c
+ (_dl_reloc_overflow): Likewise.
+ * sysdeps/arm/dl-machine.h (elf_machine_rel): Likewise.
+ (elf_machine_rela): Likewise.
+
2002-09-27 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h (__hidden_dot_weak1): Fix typo. Replace
topbits = newvalue & 0xfe000000;
if (topbits != 0xfe000000 && topbits != 0x00000000)
{
- _dl_signal_error (0, map->l_name, NULL,
- "R_ARM_PC24 relocation out of range");
+ INTUSE (_dl_signal_error)
+ (0, map->l_name, NULL,
+ "R_ARM_PC24 relocation out of range");
}
}
newvalue >>= 2;
topbits = newvalue & 0xfe000000;
if (topbits != 0xfe000000 && topbits != 0x00000000)
{
- _dl_signal_error (0, map->l_name, NULL,
- "R_ARM_PC24 relocation out of range");
+ INTUSE (_dl_signal_error)
+ (0, map->l_name, NULL,
+ "R_ARM_PC24 relocation out of range");
}
}
newvalue >>= 2;
/* Return an empty array. Hurd has no hardware capabilities. */
result = (struct r_strlenpair *) malloc (sizeof (*result));
if (result == NULL)
- _dl_signal_error (ENOMEM, NULL, NULL, "cannot create capability list");
+ INTUSE (_dl_signal_error) (ENOMEM, NULL, NULL,
+ "cannot create capability list");
result[0].str = (char *) result; /* Does not really matter. */
result[0].len = 0;
}
}
- _dl_signal_error (0, NULL, NULL, "cannot find runtime link map");
+ INTUSE (_dl_signal_error) (0, NULL, NULL, "cannot find runtime link map");
return NULL;
}
t = stpcpy (t, "'");
}
t = stpcpy (t, " out of range");
- _dl_signal_error (0, map->l_name, NULL, buffer);
+ INTUSE (_dl_signal_error) (0, map->l_name, NULL, buffer);
}