# HG changeset patch # User reimar # Date 1274894858 0 # Node ID d8929af71fe49408e8f625b658c393eb638bd81f # Parent 1b0e34bfb35a3ae9756b869d1da39f23c238da94 Disable waking the cache process up via a signal, it currently causes read errors due to not handling EINTR. diff -r 1b0e34bfb35a -r d8929af71fe4 stream/cache2.c --- a/stream/cache2.c Wed May 26 10:05:36 2010 +0000 +++ b/stream/cache2.c Wed May 26 17:27:38 2010 +0000 @@ -102,7 +102,10 @@ { #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 }