From 089a2435f83439a7eb68a539fd99d39b220df120 Mon Sep 17 00:00:00 2001 From: David Dykstra Date: Tue, 28 Jan 2003 03:03:55 +0000 Subject: [PATCH] Ack! I had accidentally ifdefed out the kill from the generator to the receiver process for every platform except Cygwin. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index f61ead43..c2681e61 100644 --- a/main.c +++ b/main.c @@ -465,8 +465,8 @@ static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name) #ifdef DELAY_BEFORE_SIGNALING_RECEIVER /* workaround for cygwin hangs; wait to make sure child is ready */ msleep(100); - kill(pid, SIGUSR2); #endif + kill(pid, SIGUSR2); wait_process(pid, &status); return status; } -- 2.34.1