about summary refs log tree commit diff
path: root/sysdeps/mach
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-09-28 19:45:42 +0000
committerRoland McGrath <roland@gnu.org>2002-09-28 19:45:42 +0000
commit6ae4fca735cee01c892f41a63bf04a791ec1bb66 (patch)
tree1430c239258e44654dbefe4d03051c436aa33af1 /sysdeps/mach
parenta30471af3b84e81c6e5300089392d40d8d2d5afe (diff)
downloadglibc-6ae4fca735cee01c892f41a63bf04a791ec1bb66.tar.gz
glibc-6ae4fca735cee01c892f41a63bf04a791ec1bb66.tar.xz
glibc-6ae4fca735cee01c892f41a63bf04a791ec1bb66.zip
* 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.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/dl-sysdep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c
index 6d009401b9..a0795f1eb7 100644
--- a/sysdeps/mach/hurd/dl-sysdep.c
+++ b/sysdeps/mach/hurd/dl-sysdep.c
@@ -648,7 +648,8 @@ _dl_important_hwcaps (const char *platform, size_t platform_len, size_t *sz,
   /* 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;