From 6eaf13e61aa41fb6bcbe41f72b28e10b9be01193 Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@monsoon.(none)>
Date: Tue, 6 Nov 2012 23:02:24 -0500
Subject: [PATCH] lowered the readsize (EXPERIMENTAL) from 10K to 2000
 (originally) 1000. 10K caused high probability of xruns, while 1000 could
 result in stack overflow in gui-heavy patches.

---
 src/t_tkcmd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/t_tkcmd.c b/src/t_tkcmd.c
index a66e5edc5..d96408027 100644
--- a/src/t_tkcmd.c
+++ b/src/t_tkcmd.c
@@ -113,7 +113,7 @@ static int sockfd;
 /* The "pd_readsocket" command, which polls the socket. */
 
 #define CHUNKSIZE 20000 /* chunks to allocate memory for reading socket */
-#define READSIZE 10000  /* size of read to issue */
+#define READSIZE 2000  /* size of read to issue */
 
 static char *pd_tkbuf = 0;      /* buffer for reading */
 static int pd_tkbufsize = 0;    /* current buffer size */
-- 
GitLab