This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libc/2671] On powerpc the order of parameters in weak_alias is significant


------- 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 <socket.S>
>   -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 <socket.S>
>   -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 <socket.S>
>   -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 <socket.S>
>   -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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]