Re: Displaying the real thread PIDs.

2002-08-19 Thread Dan Nelson
In the last episode (Aug 19), Reid Sutherland (mysql) said: > Dan Nelson wrote: > > You cannot send signals to individual threads. Signals are > > delivered to the process as a whole rather than to a thread. The > > only way to kill a thread is from within the application itself. > > Mysql prov

Re: Displaying the real thread PIDs.

2002-08-19 Thread Reid Sutherland (mysql)
Dan Nelson wrote: > > You cannot send signals to individual threads. Signals are delivered > to the process as a whole rather than to a thread. The only way to > kill a thread is from within the application itself. Mysql provides > the "kill " command for this. Thanks for your reply. What co

Re: Displaying the real thread PIDs.

2002-08-18 Thread Dan Nelson
In the last episode (Aug 18), Reid Sutherland said: > Hi everyone, > > '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

Re: Displaying the real thread PIDs.

2002-08-17 Thread Michael Bacarella
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

Displaying the real thread PIDs.

2002-08-17 Thread Reid Sutherland
Hi everyone, '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 the