diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2005-10-20 16:42:18 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2005-10-20 16:42:18 +0000 |
commit | 76398431deb895948f8403fcefd4b3f67fa4ba4e (patch) | |
tree | ee742ce7693831fdfbdf99b473e11758a83da18a /toolchain/uClibc/patches/110-mips_pipe.patch | |
parent | dcfbd97b66de82ae0d01c0b514026512cb98113c (diff) | |
download | upstream-76398431deb895948f8403fcefd4b3f67fa4ba4e.tar.gz upstream-76398431deb895948f8403fcefd4b3f67fa4ba4e.tar.bz2 upstream-76398431deb895948f8403fcefd4b3f67fa4ba4e.zip |
update to uClibc v0.9.8
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2200 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/uClibc/patches/110-mips_pipe.patch')
-rw-r--r-- | toolchain/uClibc/patches/110-mips_pipe.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/toolchain/uClibc/patches/110-mips_pipe.patch b/toolchain/uClibc/patches/110-mips_pipe.patch new file mode 100644 index 0000000000..734310f07e --- /dev/null +++ b/toolchain/uClibc/patches/110-mips_pipe.patch @@ -0,0 +1,27 @@ +diff -ur uClibc-0.9.28/libc/sysdeps/linux/mips/pipe.S uClibc-0.9.28.openwrt/libc/sysdeps/linux/mips/pipe.S +--- uClibc-0.9.28/libc/sysdeps/linux/mips/pipe.S 2005-08-18 00:49:44.000000000 +0200 ++++ uClibc-0.9.28.openwrt/libc/sysdeps/linux/mips/pipe.S 2005-10-20 12:34:52.000000000 +0200 +@@ -10,22 +10,17 @@ + .globl pipe + .ent pipe, 0 + pipe: +- addiu sp,sp,-24 +- sw a0,16(sp) + li v0,__NR_pipe + syscall + beqz a3, 1f +- la t3, errno +- sw v0, (t3) ++ sw v0, errno + li v0, -1 + b 2f + 1: +- lw a0, 16(sp) + sw v0, 0(a0) + sw v1, 4(a0) + li v0, 0 + 2: +- addiu sp,sp,24 + j ra + .end pipe + .size pipe,.-pipe |