summaryrefslogtreecommitdiff
path: root/Ports
diff options
context:
space:
mode:
authorDaniel Bertalan <dani@danielbertalan.dev>2021-12-23 11:17:03 +0100
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-12-24 17:02:40 +0330
commit1c054ac56e8206a2746eec7a96683447a2dace35 (patch)
tree7c92765733b5169bba9a4ba2af5cb07f0365a70d /Ports
parent7893ae42331512029c689a170bc9eca7e4838214 (diff)
downloadserenity-1c054ac56e8206a2746eec7a96683447a2dace35.zip
Ports/mrsh: Remove obsolete PIPE_BUF patch
We now have this macro in LibC.
Diffstat (limited to 'Ports')
-rw-r--r--Ports/mrsh/patches/pipebuf.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/Ports/mrsh/patches/pipebuf.patch b/Ports/mrsh/patches/pipebuf.patch
deleted file mode 100644
index 27ec1299bf..0000000000
--- a/Ports/mrsh/patches/pipebuf.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur emersion-mrsh-d9763a3/shell/redir.c emersion-mrsh-d9763a3.serenity/shell/redir.c
---- emersion-mrsh-d9763a3/shell/redir.c 2020-01-27 16:43:09.000000000 +0100
-+++ emersion-mrsh-d9763a3.serenity/shell/redir.c 2021-04-12 10:17:08.980846918 +0200
-@@ -46,7 +46,7 @@
-
- // We can write at most PIPE_BUF bytes without blocking. If we want to write
- // more, we need to fork and continue writing in another process.
-- size_t remaining = PIPE_BUF;
-+ size_t remaining = 4096;
- bool more = false;
- size_t i;
- for (i = 0; i < lines->len; ++i) {