public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Fix ia64 build
@ 2004-04-18  2:02 Jakub Jelinek
  0 siblings, 0 replies; 4+ messages in thread
From: Jakub Jelinek @ 2004-04-18  2:02 UTC (permalink / raw)
  To: Ulrich Drepper; +Cc: Glibc hackers

Hi!

2004-04-17  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/ia64/memcmp.S (memcmp): Remove BP_SYM from
	libc_hidden_builtin_def.

--- libc/sysdeps/ia64/memcmp.S.jj	2004-04-13 10:42:54.000000000 +0200
+++ libc/sysdeps/ia64/memcmp.S	2004-04-17 11:26:26.801401510 +0200
@@ -162,4 +162,4 @@ ENTRY(memcmp)
 END(memcmp)
 
 weak_alias (memcmp, bcmp)
-libc_hidden_builtin_def (BP_SYM (memcmp))
+libc_hidden_builtin_def (memcmp)

	Jakub

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] Fix ia64 build
@ 2005-10-03 22:52 Jakub Jelinek
  0 siblings, 0 replies; 4+ messages in thread
From: Jakub Jelinek @ 2005-10-03 22:52 UTC (permalink / raw)
  To: Ulrich Drepper; +Cc: Glibc hackers

Hi!

2005-10-03  Jakub Jelinek  <jakub@redhat.com>

	* allocatestack.c (setxid_signal_thread): Add
	INTERNAL_SYSCALL_DECL (err).

--- libc/nptl/allocatestack.c	2 Oct 2005 15:39:21 -0000	1.58
+++ libc/nptl/allocatestack.c	3 Oct 2005 21:49:07 -0000	1.51.2.7
@@ -839,6 +839,7 @@ setxid_signal_thread (struct xid_command
     }
 
   int val;
+  INTERNAL_SYSCALL_DECL (err);
 #if __ASSUME_TGKILL
   val = INTERNAL_SYSCALL (tgkill, err, 3, THREAD_GETMEM (THREAD_SELF, pid),
 			  t->tid, SIGSETXID);
@@ -867,8 +868,6 @@ __nptl_setxid (struct xid_command *cmdp)
   __xidcmd = cmdp;
   cmdp->cntr = 0;
 
-  INTERNAL_SYSCALL_DECL (err);
-
   struct pthread *self = THREAD_SELF;
 
   /* Iterate over the list with system-allocated threads first.  */
@@ -901,6 +900,7 @@ __nptl_setxid (struct xid_command *cmdp)
 
   /* This must be last, otherwise the current thread might not have
      permissions to send SIGSETXID syscall to the other threads.  */
+  INTERNAL_SYSCALL_DECL (err);
   result = INTERNAL_SYSCALL_NCS (cmdp->syscall_no, err, 3,
 				 cmdp->id[0], cmdp->id[1], cmdp->id[2]);
   if (INTERNAL_SYSCALL_ERROR_P (result, err))

	Jakub

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix ia64 build
  2002-05-10 13:59 Jakub Jelinek
@ 2002-05-10 22:12 ` Andreas Jaeger
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas Jaeger @ 2002-05-10 22:12 UTC (permalink / raw)
  To: Jakub Jelinek; +Cc: Ulrich Drepper, Glibc hackers

Jakub Jelinek <jakub@redhat.com> writes:

> Hi!
>
> 2002-05-10  Jakub Jelinek  <jakub@redhat.com>
>
> 	* sysdeps/ia64/Makefile: Remove extra endif.
> 	* sysdeps/ia64/ia64libgcc.S (__divsf3): Fix typo in symbol version.

Thanks, I've committed this on mainline,

Andreas
-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] Fix ia64 build
@ 2002-05-10 13:59 Jakub Jelinek
  2002-05-10 22:12 ` Andreas Jaeger
  0 siblings, 1 reply; 4+ messages in thread
From: Jakub Jelinek @ 2002-05-10 13:59 UTC (permalink / raw)
  To: Ulrich Drepper; +Cc: Glibc hackers

Hi!

2002-05-10  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/ia64/Makefile: Remove extra endif.
	* sysdeps/ia64/ia64libgcc.S (__divsf3): Fix typo in symbol version.

--- libc/sysdeps/ia64/Makefile	10 May 2002 09:54:45 -0000	1.1.1.7
+++ libc/sysdeps/ia64/Makefile	10 May 2002 14:35:15 -0000	1.2
@@ -16,7 +16,6 @@ sysdep_routines += ia64libgcc
 shared-only-routines += ia64libgcc
 endif
 endif
-endif
 
 ifeq ($(subdir),elf)
 sysdep-dl-routines += dl-symaddr dl-fptr
--- libc/sysdeps/ia64/ia64libgcc.S	10 May 2002 09:54:45 -0000	1.1.1.1
+++ libc/sysdeps/ia64/ia64libgcc.S	10 May 2002 15:03:08 -0000	1.2
@@ -102,7 +102,7 @@ ENTRY(___divsf3)
 	br.ret.sptk rp
 	;;
 END(___divsf3)
-	.symver	___divsf3, __divsf3@GLIBC2.2
+	.symver	___divsf3, __divsf3@GLIBC_2.2
 
 /* __divdi3
    Compute a 64-bit integer quotient.

	Jakub

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-10-03 22:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-04-18  2:02 [PATCH] Fix ia64 build Jakub Jelinek
  -- strict thread matches above, loose matches on Subject: below --
2005-10-03 22:52 Jakub Jelinek
2002-05-10 13:59 Jakub Jelinek
2002-05-10 22:12 ` Andreas Jaeger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).