On Sun, Aug 18, 2002 at 02:32:39AM -0400, Reid Sutherland wrote: > 'processlist' displays the current list of mysql threads as seen by mysql. > I'm looking for that same list but in real thread PID form. Right now I > need to be able to tell which thread is which at a system level. Then I'm > able to send a SIGKILL to some problem threads. > > Is there a way to get a _real_ PID list from mysql that will display all the > same things as 'processlist'?
That is most likely a bad idea. I'm wagering MySQL's thread killing is cooperative, that is, it probably checks during each phase of processing whether or not it has been killed, and if it has, to safely clean up. Forcibly terminating a thread where it has no choice will not allow cleanup routines to run, which could cause undefined behavior or at the very least resource leakage. These are just guesses though. -- Michael Bacarella | Netgraft Corp | 545 Eighth Ave #401 Systems Analysis | New York, NY 10018 Technical Support | 212 946-1038 | 917 670-6982 Managed Services | http://netgraft.com/ --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php