From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25055 invoked by alias); 18 May 2006 02:28:44 -0000 Received: (qmail 25034 invoked by uid 48); 18 May 2006 02:28:37 -0000 Date: Thu, 18 May 2006 02:28:00 -0000 Message-ID: <20060518022837.25033.qmail@sourceware.org> From: "malitzke at metronets dot com" To: glibc-bugs@sources.redhat.com In-Reply-To: <20060517171248.2671.malitzke@metronets.com> References: <20060517171248.2671.malitzke@metronets.com> Reply-To: sourceware-bugzilla@sourceware.org Subject: [Bug libc/2671] On powerpc the order of parameters in weak_alias is significant X-Bugzilla-Reason: CC Mailing-List: contact glibc-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: glibc-bugs-owner@sourceware.org X-SW-Source: 2006-05/txt/msg00098.txt.bz2 List-Id: ------- Additional Comments From malitzke at metronets dot com 2006-05-18 02:28 ------- Well, another attempt > --- ./sysdeps/unix/sysv/linux/getsockname.S.org 2002-05-14 20:17:58.000000000 -0400 > +++ ./sysdeps/unix/sysv/linux/getsockname.S 2006-05-08 05:34:59.000000000 -0400 > @@ -2,4 +2,4 @@ > #define NARGS 3 > #define NO_WEAK_ALIAS 1 > #include > -weak_alias (getsockname, __getsockname) > +weak_alias (__getsockname, getsockname) > --- ./sysdeps/unix/sysv/linux/bind.S.org 2002-05-14 20:17:25.000000000 -0400 > +++ ./sysdeps/unix/sysv/linux/bind.S 2006-05-08 05:21:20.000000000 -0400 > @@ -2,4 +2,4 @@ > #define NARGS 3 > #define NO_WEAK_ALIAS 1 > #include > -weak_alias (bind, __bind) > +weak_alias ( __bind, bind) > --- ./sysdeps/unix/sysv/linux/listen.S.org 2002-05-14 20:18:37.000000000 -0400 > +++ ./sysdeps/unix/sysv/linux/listen.S 2006-05-08 05:37:40.000000000 -0400 > @@ -2,4 +2,4 @@ > #define NARGS 2 > #define NO_WEAK_ALIAS 1 > #include > -weak_alias (listen, __listen) > +weak_alias (__listen, listen) > --- ./sysdeps/unix/sysv/linux/setsockopt.S.org 2002-05-14 20:19:09.000000000 -0400 > +++ ./sysdeps/unix/sysv/linux/setsockopt.S 2006-05-08 05:40:46.000000000 -0400 > @@ -2,4 +2,4 @@ > #define NARGS 5 > #define NO_WEAK_ALIAS 1 > #include > -weak_alias (setsockopt, __setsockopt) > +weak_alias (__setsockopt, setsockopt) -- http://sourceware.org/bugzilla/show_bug.cgi?id=2671 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.