]> gcc.gnu.org Git - gcc.git/blame - libjava/no-threads.cc
configure: Rebuilt.
[gcc.git] / libjava / no-threads.cc
CommitLineData
ee9dd372
TT
1// no-thread.cc - Implementation of `no threads' threads.
2
3/* Copyright (C) 1998, 1999 Cygnus Solutions
4
5 This file is part of libgcj.
6
7This software is copyrighted work licensed under the terms of the
8Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9details. */
10
11#include <config.h>
12
27e934d8 13#include <gcj/cni.h>
ee9dd372
TT
14#include <jvm.h>
15#include <java/lang/Thread.h>
16
17java::lang::Thread *_Jv_OnlyThread = NULL;
18
19void
20_Jv_ThreadStart (java::lang::Thread *thread, _Jv_Thread_t *,
21 _Jv_ThreadStartFunc *meth)
22{
23 JvAssert (! _Jv_OnlyThread);
24 _Jv_OnlyThread = thread;
25 (*meth) (thread);
26}
This page took 0.053407 seconds and 5 git commands to generate.