summaryrefslogtreecommitdiffstats
path: root/stream/cache2.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/cache2.c')
-rw-r--r--stream/cache2.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/stream/cache2.c b/stream/cache2.c
index 51989ebd2a..fef316f627 100644
--- a/stream/cache2.c
+++ b/stream/cache2.c
@@ -102,7 +102,10 @@ static void cache_wakeup(stream_t *s)
{
#if FORKED_CACHE
// signal process to wake up immediately
- kill(s->cache_pid, SIGUSR1);
+ // Disabled for now since it causes incorrect EOFs
+ // due to interrupting read syscalls - this should be
+ // fixed instead though
+// kill(s->cache_pid, SIGUSR1);
#endif
}