Date: Wed, 26 May 1999 07:03:15 -0500 (CDT) From: Eric Haug <ejh@eas.slu.edu> To: current@freebsd.org Subject: process did not exit properly after kill signal Message-ID: <199905261203.HAA03513@mnw.eas.slu.edu>
next in thread | raw e-mail | index | archive | help
Hi, I have a pr440fx dual PPro system with 132Mb. I replaced memory and was testing memory with a short program (included below) and decided to try to kill it keyboard signals did change what the system was doing in that the swapping that was occurring stopped. kill -9 PID did not have the usual effect. But the process has not exited, the shell prompt has not returned. The system now is strangely sluggish. ps indicates that the pagedaemon is accumulating a lot of run time. the program is in DE+ state. top says it's STATE is objtrm. this is with FreeBSD 4.0-CURRENT of about Wed May 5 06:20 CDT I suppose this is some VM problem with cleaning up on program exit. Fixed since May 5 ??? eric haug Saint Louis Univ #define L 32 long j[L][1024][1024]; main() { int l,m,n,o; for(o=0; o<16;o++) for(l=0; l<L; l++) for(m=0; m<1024; m++) for(n=0; n<1024; n++) j[l][m][n] = 1; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199905261203.HAA03513>