From ef845edb6e197b615f95aafa8cd189939bb3f1d0 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Fri, 24 Jun 2016 12:35:18 +0200 Subject: [PATCH] lib/libc_noux: increase execve buffers Fixes #2025 --- repos/ports/include/noux_session/sysio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/repos/ports/include/noux_session/sysio.h b/repos/ports/include/noux_session/sysio.h index adac263cf3..249882955f 100644 --- a/repos/ports/include/noux_session/sysio.h +++ b/repos/ports/include/noux_session/sysio.h @@ -48,13 +48,13 @@ namespace Noux { enum { MAX_PATH_LEN = 512 }; typedef char Path[MAX_PATH_LEN]; - enum { CHUNK_SIZE = 7*1024 }; + enum { CHUNK_SIZE = 11*1024 }; typedef char Chunk[CHUNK_SIZE]; - enum { ARGS_MAX_LEN = 4*1024 }; + enum { ARGS_MAX_LEN = 5*1024 }; typedef char Args[ARGS_MAX_LEN]; - enum { ENV_MAX_LEN = 4*1024 }; + enum { ENV_MAX_LEN = 6*1024 }; typedef char Env[ENV_MAX_LEN]; typedef __SIZE_TYPE__ size_t;