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
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
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
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
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