mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:57:35 +00:00
Ports/mrsh: Remove obsolete PIPE_BUF patch
We now have this macro in LibC.
This commit is contained in:
parent
7893ae4233
commit
1c054ac56e
1 changed files with 0 additions and 12 deletions
|
@ -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) {
|
|
Loading…
Add table
Add a link
Reference in a new issue