2ba5f77454
* All files: Updated copyright information. * COPYING: New file. * COPYING.LIB: Removed. * LIBGCJ_LICENSE: We now use GPL + special exception. From-SVN: r32387
25 lines
530 B
C++
25 lines
530 B
C++
// natNativeThread.cc - Native side of attached threads.
|
|
|
|
/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
|
|
|
|
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_ ();
|
|
}
|