/[classpath]/classpath/java/lang/Thread.java
ViewVC logotype

Diff of /classpath/java/lang/Thread.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by jfrijters, Fri Aug 29 12:43:07 2003 UTC revision 1.2 by jfrijters, Fri Nov 21 08:08:00 2003 UTC
# Line 1  Line 1 
1  /* Thread -- an independent thread of executable code  /* Thread -- an independent thread of executable code
2     Copyright (C) 1998, 2001, 2002 Free Software Foundation     Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 388  public class Thread implements Runnable Line 388  public class Thread implements Runnable
388    public synchronized void start()    public synchronized void start()
389    {    {
390      if (vmThread != null || group == null)      if (vmThread != null || group == null)
391          throw new IllegalStateException();          throw new IllegalThreadStateException();
392    
393      VMThread.create(this, stacksize);      VMThread.create(this, stacksize);
394    }    }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26