Date: Sun, 27 Apr 2003 19:53:39 -0700 (PDT) From: Peter Wemm <peter@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 29919 for review Message-ID: <200304280253.h3S2rdDu057231@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=29919 Change 29919 by peter@peter_daintree on 2003/04/27 19:53:20 oops! pipe(3) takes an array of ints, not longs Affected files ... .. //depot/projects/hammer/lib/libc/x86_64/sys/pipe.S#5 edit Differences ... ==== //depot/projects/hammer/lib/libc/x86_64/sys/pipe.S#5 (text+ko) ==== @@ -52,8 +52,8 @@ KERNCALL jb 1f popq %rcx - movq %rax,(%rcx) - movq %rdx,8(%rcx) + movl %eax,(%rcx) + movl %edx,4(%rcx) movq $0,%rax ret 1:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200304280253.h3S2rdDu057231>