From 22f84b5e5691e13679b10ae18792e9547f093c68 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 13 Feb 2019 11:51:51 +0100 Subject: [PATCH] sys/linux/test: use pipe2 instead of pipe pipe does not exist on arm64. --- sys/linux/test/fd_assignment | 2 +- sys/linux/test/pipe | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/linux/test/fd_assignment b/sys/linux/test/fd_assignment index 0aa82a8b..9e12f297 100644 --- a/sys/linux/test/fd_assignment +++ b/sys/linux/test/fd_assignment @@ -3,7 +3,7 @@ close(0x3) # EBADF close(0x4) # EBADF close(0x5) # EBADF -pipe(&(0x7f0000000000)={0x0, 0x0}) +pipe2(&(0x7f0000000000)={0x0, 0x0}, 0x0) close(0x3) close(0x4) close(0x5) # EBADF diff --git a/sys/linux/test/pipe b/sys/linux/test/pipe index 47daff19..c9e0dd58 100644 --- a/sys/linux/test/pipe +++ b/sys/linux/test/pipe @@ -1,3 +1,3 @@ -pipe(&(0x7f0000000000)={0x0, 0x0}) +pipe2(&(0x7f0000000000)={0x0, 0x0}, 0x0) close(r0) close(r1)