PERFORCE change 29919 for review

Peter Wemm peter at FreeBSD.org
Sun Apr 27 19:53:42 PDT 2003


http://perforce.freebsd.org/chv.cgi?CH=29919

Change 29919 by peter at 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:	


More information about the p4-projects mailing list