[kaffe] Re: Bug in ThreadGroup
    Hervé Roussain 
    Herve.Roussain at univ-ubs.fr
       
    Fri Apr 11 08:37:05 PDT 2003
    
    
  
I've already tried to correct my patch but it seems that it didn't work.
I use the gmane.org news server. Sometimes I have to answer to mail if I 
want my message to be posted to kaffe mailing list, some other times, I 
receive a message that says that my post have to be accepted by someone 
on the list...
This is what I submitted:
diff -r1.16 ThreadGroup.java
245c245,247
<     return ((parent == g) || (parentOf(g.getParent())));
---
 >     if(g == null)
 >     return false;
 >     return (this == g) || parentOf(g.getParent());
I also have modified my test to add more tests...
Hervé
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ThreadGroupTest.java
Type: text/x-java
Size: 1020 bytes
Desc: not available
Url : http://kaffe.org/pipermail/kaffe/attachments/20030411/6aca0d68/attachment-0003.java 
    
    
More information about the kaffe
mailing list