diff options
Diffstat (limited to 'libjava/gnu/gcj/jni/natNativeThread.cc')
-rw-r--r-- | libjava/gnu/gcj/jni/natNativeThread.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libjava/gnu/gcj/jni/natNativeThread.cc b/libjava/gnu/gcj/jni/natNativeThread.cc new file mode 100644 index 00000000000..b26c95dba94 --- /dev/null +++ b/libjava/gnu/gcj/jni/natNativeThread.cc @@ -0,0 +1,24 @@ +// natNativeThread.cc - Native side of attached threads. + +/* Copyright (C) 1998, 1999, 2000 Red Hat, Inc. + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +// Written by Tom Tromey <tromey@cygnus.com> + +#include <config.h> + +#include <gcj/cni.h> +#include <jvm.h> +#include <gnu/gcj/jni/NativeThread.h> +#include <java/lang/Thread.h> + +void +gnu::gcj::jni::NativeThread::finish () +{ + finish_ (); +} |