git: 9front

Download patch

ref: a8905cea5d218b1285e35e9eacf73846d42ab151
parent: 227af20381a8d3e21f23815893c939969d82d89e
author: cinap_lenrek <cinap_lenrek@gmx.de>
date: Tue Oct 9 11:26:45 EDT 2012

vncv: fork tcs with RFNOWAIT as we dont collect wait message

--- a/sys/src/cmd/vnc/wsys.c
+++ b/sys/src/cmd/vnc/wsys.c
@@ -178,7 +178,7 @@
 		goto Dup;
 	if(pipe(pfd) < 0)
 		goto Dup;
-	switch(rfork(RFPROC|RFFDG|RFMEM)){
+	switch(rfork(RFPROC|RFFDG|RFMEM|RFNOWAIT)){
 	case -1:
 		close(pfd[0]);
 		close(pfd[1]);
--