From owner-freebsd-alpha Mon Jan 11 07:06:03 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA14795 for freebsd-alpha-outgoing; Mon, 11 Jan 1999 07:06:03 -0800 (PST) (envelope-from owner-freebsd-alpha@FreeBSD.ORG) Received: from mail.sat.t.u-tokyo.ac.jp (dryad.sat.t.u-tokyo.ac.jp [133.11.156.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA14740 for ; Mon, 11 Jan 1999 07:05:58 -0800 (PST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [133.11.156.43]) by mail.sat.t.u-tokyo.ac.jp (8.8.6/3.4Wbeta6-SAT1.0) with ESMTP id AAA14982; Tue, 12 Jan 1999 00:05:24 +0900 (JST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from localhost by ett.sat.t.u-tokyo.ac.jp (8.8.8/sat-V0.6) id AAA15860; Tue, 12 Jan 1999 00:05:23 +0900 (JST) To: csubl@csv.warwick.ac.uk Cc: mike@smith.net.au, mjacob@feral.com, alpha@FreeBSD.ORG Subject: Re: complete lockup under large I/O? In-Reply-To: Your message of "Mon, 11 Jan 1999 14:50:22 +0000 (GMT)" <199901111450.OAA07913@lupin.csv.warwick.ac.uk> References: <199901111450.OAA07913@lupin.csv.warwick.ac.uk> X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7:#j7i14gu$ jgR\S*&C3R/pJX Date: Tue, 12 Jan 1999 00:05:23 +0900 From: Hidetoshi Shimokawa X-Dispatcher: imput version 980905(IM100) Lines: 53 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org csubl> > All states that can be found is: csubl> > csubl> > accept csubl> > getblk csubl> > inode csubl> > nanslp csubl> > nfsd csubl> > nfsidl csubl> > pause csubl> > ppwait csubl> > psleep csubl> > sbwait csubl> > sched csubl> > select csubl> > ttyin csubl> > vmpfw csubl> > wait csubl> > wmesg csubl> > wswbuf csubl> > csubl> > csubl> csubl> Where can I find what each state means? I don't know the right way to find. But the following may help you. % cd /sys % gtags (--- wait for a while) % global -rx tsleep Note: gctags sometimes dies on alpha without the following patch. /usr/src/usr.bin/ctags/C.c may have the same bug. Index: C.c =================================================================== RCS file: /pub/FreeBSD-CVS/src/contrib/global/gctags/C.c,v retrieving revision 1.2 diff -u -r1.2 C.c --- C.c 1997/12/15 23:22:41 1.2 +++ C.c 1998/12/06 16:02:04 @@ -468,6 +468,8 @@ while (GETC(!=, EOF) && iswhite(c)) if (c == '\n') SETLINE; + if (c == EOF) + return (NO); if (intoken(c) || c == '{') break; if (c == '/' && GETC(==, '*')) /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: finger -l simokawa@sat.t.u-tokyo.ac.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message