]> gcc.gnu.org Git - gcc.git/blob - libjava/gnu/gcj/jni/NativeThread.java
4d3eb78ac74a5f243bbccfe29353b1edb40f2d5e
[gcc.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 init ();
24 }
25
26 // Call this to mark the thread as finished.
27 public native void finish ();
28 public native void init ();
29 }
This page took 0.035334 seconds and 4 git commands to generate.