2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / no-threads.cc
blob4153dcd04dee6c6b3cce9076e62fe0c736abc90b
1 // no-thread.cc - Implementation of `no threads' threads.
3 /* Copyright (C) 1998, 1999, 2001 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 #include <config.h>
13 #include <gcj/cni.h>
14 #include <jvm.h>
15 #include <java/lang/Thread.h>
16 #include <java/lang/InternalError.h>
18 java::lang::Thread *_Jv_OnlyThread = NULL;
20 _Jv_Thread_t *
21 _Jv_ThreadInitData (java::lang::Thread *thread)
23 // It is ok to create a new Thread object, as long as it isn't started.
24 if (_Jv_OnlyThread == NULL)
25 _Jv_OnlyThread = thread;
26 return NULL;
29 void
30 _Jv_ThreadStart (java::lang::Thread *, _Jv_Thread_t *, _Jv_ThreadStartFunc *)
32 throw new java::lang::InternalError (JvNewStringLatin1 ("Thread.start called but threads not available"));