aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/acid/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/acid/proc.c')
-rw-r--r--src/cmd/acid/proc.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/src/cmd/acid/proc.c b/src/cmd/acid/proc.c
index 0ae5a5bb..298e4351 100644
--- a/src/cmd/acid/proc.c
+++ b/src/cmd/acid/proc.c
@@ -88,6 +88,7 @@ nproc(char **argv)
fatal("new: exec %s: %r");
default:
install(pid);
+ msg(pid, "attached");
msg(pid, "waitstop");
notes(pid);
sproc(pid);
@@ -242,21 +243,6 @@ msg(int pid, char *msg)
char *
getstatus(int pid)
{
- int fd;
- char *p;
-
- static char buf[128];
-
- sprint(buf, "/proc/%d/status", pid);
- fd = open(buf, OREAD);
- if(fd < 0)
- error("open %s: %r", buf);
- read(fd, buf, sizeof(buf));
- close(fd);
- p = buf+56+12; /* Do better! */
- while(*p == ' ')
- p--;
- p[1] = '\0';
- return buf+56; /* ditto */
+ return "unknown";
}