tignore tstp - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit c042e61ec71fcb5525461b40a5ef8ab189156135
DIR parent 33488b09cb167525d50ab5f411fed6884093321f
HTML Author: rsc <devnull@localhost>
Date: Fri, 18 Mar 2005 19:01:39 +0000
ignore tstp
Diffstat:
M src/cmd/9pserve.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
DIR diff --git a/src/cmd/9pserve.c b/src/cmd/9pserve.c
t@@ -212,7 +212,9 @@ ignorepipe(void *v, char *s)
USED(v);
if(strcmp(s, "sys: write on closed pipe") == 0)
return 1;
- fprint(2, "%T note: %s\n", s);
+ if(strcmp(s, "sys: tstp") == 0)
+ return 1;
+ fprint(2, "9pserve %s: %T note: %s\n", addr, s);
return 0;
}