summaryrefslogtreecommitdiff
path: root/lib/libc/arch/powerpc64/sys/pipe.S
blob: 2f66db9c640dab49c55d0a53b84d8e00bcc3ea86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*	$NetBSD: pipe.S,v 1.2 2014/08/23 02:24:22 matt Exp $	*/

#include "SYS.h"

#ifdef WEAK_ALIAS
WEAK_ALIAS(pipe, _pipe)
#endif

ENTRY(_pipe)
	mr	%r5,%r3		# save pointer
	_DOSYSCALL(pipe)	# assume, that r5 is kept
	bso	1f
	stint	%r3,0(%r5)	# success, store fds
	stint	%r4,4(%r5)
	li	%r3,0
	blr			# and return 0
1:
	BRANCH_TO_CERROR()
END(_pipe)