diff options
author | David 'Digit' Turner <digit@google.com> | 2010-09-27 17:33:08 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2010-09-27 17:33:08 +0200 |
commit | 275cd48511daabe4591caa49c3ad0df34a6889ff (patch) | |
tree | 7fa40917d92ff25cbfe6e4f4d4cbe01bd9af588e /libc/arch-arm/syscalls/pipe2.S | |
parent | b9e49ad56e5776ace7c6eab2e997d5b7acb16792 (diff) | |
download | bionic-275cd48511daabe4591caa49c3ad0df34a6889ff.zip bionic-275cd48511daabe4591caa49c3ad0df34a6889ff.tar.gz bionic-275cd48511daabe4591caa49c3ad0df34a6889ff.tar.bz2 |
libc: Add missing pipe2() declaration and implementation.
Change-Id: Iacb914bd6ac5adc60c5671e6fef680ede21f9b0c
Diffstat (limited to 'libc/arch-arm/syscalls/pipe2.S')
-rw-r--r-- | libc/arch-arm/syscalls/pipe2.S | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libc/arch-arm/syscalls/pipe2.S b/libc/arch-arm/syscalls/pipe2.S new file mode 100644 index 0000000..df77094 --- /dev/null +++ b/libc/arch-arm/syscalls/pipe2.S @@ -0,0 +1,19 @@ +/* autogenerated by gensyscalls.py */ +#include <sys/linux-syscalls.h> + + .text + .type pipe2, #function + .globl pipe2 + .align 4 + .fnstart + +pipe2: + .save {r4, r7} + stmfd sp!, {r4, r7} + ldr r7, =__NR_pipe2 + swi #0 + ldmfd sp!, {r4, r7} + movs r0, r0 + bxpl lr + b __set_syscall_errno + .fnend |