OSDN Git Service

* All files: Updated copyright information.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / gcj / jni / NativeThread.java
1 // NativeThread.java - Wrapper for attached user threads.
2
3 /* Copyright (C) 1998, 1999, 2000  Free Software Foundation
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 package gnu.gcj.jni;
12
13 /**
14  * @author Tom Tromey <tromey@cygnus.com>
15  * @date February 9, 2000
16  */
17
18 public class NativeThread extends Thread
19 {
20   public NativeThread (ThreadGroup g, String name)
21   {
22     super (g, null, name);
23     alive_flag = true;
24   }
25
26   // Call this to mark the thread as finished.
27   public native void finish ();
28 }