OSDN Git Service

* include/jvm.h (struct _Jv_frame_info): New structure.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / gcj / runtime / natFinalizerThread.cc
1 // natFinalizerThread.cc - Implementation of FinalizerThread native methods.
2
3 /* Copyright (C) 2001  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 #include <config.h>
12
13 #include <gcj/cni.h>
14 #include <jvm.h>
15
16 #include <gnu/gcj/runtime/FinalizerThread.h>
17
18 void
19 gnu::gcj::runtime::FinalizerThread::runFinalizers ()
20 {
21   _Jv_RunFinalizers ();
22 }