jdk/src/share/classes/java/lang/ThreadGroup.java
changeset 14014 da3648e13e67
parent 11117 b6e68b1344d4
child 14342 8435a30053c1
equal deleted inserted replaced
14013:10f55dd791e1 14014:da3648e13e67
   916      * considered an unstarted member of the thread group, and a subsequent
   916      * considered an unstarted member of the thread group, and a subsequent
   917      * attempt to start the thread is permitted.
   917      * attempt to start the thread is permitted.
   918      *
   918      *
   919      * @param  t
   919      * @param  t
   920      *         the Thread whose start method was invoked
   920      *         the Thread whose start method was invoked
   921      *
       
   922      * @param  failed
       
   923      *         true if the thread could not be started successfully
       
   924      */
   921      */
   925     void threadStartFailed(Thread t) {
   922     void threadStartFailed(Thread t) {
   926         synchronized(this) {
   923         synchronized(this) {
   927             remove(t);
   924             remove(t);
   928             nUnstartedThreads++;
   925             nUnstartedThreads++;