Date: Mon, 31 Aug 1998 04:20:01 -0700 (PDT) From: "Daniel M. Eischen" <eischen@vigrid.com> To: freebsd-bugs@FreeBSD.ORG Subject: Re: kern/7586: [PATCH] Threads bug in libc_r preventing MySQL from shutting down Message-ID: <199808311120.EAA08398@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/7586; it has been noted by GNATS. From: "Daniel M. Eischen" <eischen@vigrid.com> To: freebsd-gnats-submit@freebsd.org, nik@iii.co.uk Cc: jb@cimlogic.com.au Subject: Re: kern/7586: [PATCH] Threads bug in libc_r preventing MySQL from shutting down Date: Mon, 31 Aug 1998 03:09:00 -0400 Oops, forgot to fix uthread_info for the addition of another state. Here is the fix for that. Dan Eischen eischen@vigrid.com *** ../uthread.orig/uthread_info.c Tue Jun 30 14:00:11 1998 --- uthread_info.c Mon Aug 31 02:58:27 1998 *************** *** 57,63 **** {PS_SELECT_WAIT , "Waiting on select"}, {PS_SLEEP_WAIT , "Sleeping"}, {PS_WAIT_WAIT , "Waiting process"}, ! {PS_SIGWAIT , "Waiting for a signal"}, {PS_JOIN , "Waiting to join"}, {PS_SUSPENDED , "Suspended"}, {PS_DEAD , "Dead"}, --- 57,64 ---- {PS_SELECT_WAIT , "Waiting on select"}, {PS_SLEEP_WAIT , "Sleeping"}, {PS_WAIT_WAIT , "Waiting process"}, ! {PS_SIGSUSPEND , "Waiting (sigsuspend) for a signal"}, ! {PS_SIGWAIT , "Waiting (sigwait) for a signal"}, {PS_JOIN , "Waiting to join"}, {PS_SUSPENDED , "Suspended"}, {PS_DEAD , "Dead"}, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199808311120.EAA08398>