Posted By:
eh_lamentavel
Posted On:
Thursday, March 15, 2001 07:39 AM
Hi all,
Im having problems about killing a thread that is blocked.
In the following piece of code if thread T is blocked how can I kill it through class A ?
class A{
public A(){
}
public setThread(){
T = new TThread().start();
}
}
thnks.