diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2012-10-09 15:26:45 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2012-10-09 15:26:45 +0200 |
commit | 6f2ea2881704cf8c1e54c8688c045d038cd7cefd (patch) | |
tree | 5ba5ba54d9f965c3186bd14bc62d92aa358d5dee /sys/src/cmd/vnc | |
parent | 3cc39a0ac7da0bcf7840f58c0986b18ab01898a2 (diff) |
vncv: fork tcs with RFNOWAIT as we dont collect wait message
Diffstat (limited to 'sys/src/cmd/vnc')
-rw-r--r-- | sys/src/cmd/vnc/wsys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/vnc/wsys.c b/sys/src/cmd/vnc/wsys.c index ea4be5f4b..6b19cfb01 100644 --- a/sys/src/cmd/vnc/wsys.c +++ b/sys/src/cmd/vnc/wsys.c @@ -178,7 +178,7 @@ tcs(int fd0, int fd1) 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]); |