2000-03-15 23:03:19 +01:00
|
|
|
// -*- c++ -*-
|
|
|
|
// win32-threads.h - Defines for using Win32 threads.
|
|
|
|
|
2003-01-28 23:23:36 +01:00
|
|
|
/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software
|
|
|
|
Foundation
|
2000-03-15 23:03:19 +01:00
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
|
|
#ifndef __JV_WIN32_THREADS__
|
|
|
|
#define __JV_WIN32_THREADS__
|
|
|
|
|
2004-09-11 21:13:51 +02:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2000-03-15 23:03:19 +01:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
//
|
|
|
|
// Typedefs.
|
|
|
|
//
|
|
|
|
|
2003-01-28 23:23:36 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
// ev[0] (signal) is a Win32 auto-reset event for _Jv_CondNotify
|
|
|
|
// ev[1] (broadcast) is a Win32 manual-reset event for _Jv_CondNotifyAll
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
HANDLE ev[2];
|
2003-01-28 23:23:36 +01:00
|
|
|
|
|
|
|
// Number of threads waiting on this condition variable
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
int blocked_count;
|
|
|
|
|
2003-01-28 23:23:36 +01:00
|
|
|
// Protects access to the blocked_count variable
|
|
|
|
CRITICAL_SECTION count_mutex;
|
|
|
|
|
|
|
|
} _Jv_ConditionVariable_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
// The thread-id of the owner thread if any, 0 otherwise
|
|
|
|
DWORD owner;
|
|
|
|
|
|
|
|
// Track nested mutex acquisitions by the same thread
|
|
|
|
int refcount;
|
|
|
|
|
|
|
|
// The actual Windows construct used to implement this mutex
|
|
|
|
CRITICAL_SECTION cs;
|
|
|
|
|
|
|
|
} _Jv_Mutex_t;
|
2000-03-15 23:03:19 +01:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int flags; // Flags are defined in implementation.
|
|
|
|
HANDLE handle; // Actual handle to the thread
|
2003-09-19 10:28:43 +02:00
|
|
|
|
|
|
|
// Protects access to the thread's interrupt_flag and
|
|
|
|
// interrupt_event variables within this module.
|
|
|
|
CRITICAL_SECTION interrupt_mutex;
|
|
|
|
|
|
|
|
// A Win32 auto-reset event for thread interruption
|
|
|
|
HANDLE interrupt_event;
|
|
|
|
|
2001-05-22 08:47:48 +02:00
|
|
|
java::lang::Thread *thread_obj;
|
2000-03-15 23:03:19 +01:00
|
|
|
} _Jv_Thread_t;
|
|
|
|
|
2002-10-21 03:50:14 +02:00
|
|
|
typedef DWORD _Jv_ThreadId_t;
|
|
|
|
|
|
|
|
inline _Jv_ThreadId_t
|
|
|
|
_Jv_ThreadSelf (void)
|
|
|
|
{
|
|
|
|
return GetCurrentThreadId();
|
|
|
|
}
|
|
|
|
|
2000-03-15 23:03:19 +01:00
|
|
|
typedef void _Jv_ThreadStartFunc (java::lang::Thread *);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Condition variables.
|
|
|
|
//
|
|
|
|
|
2004-09-11 21:13:51 +02:00
|
|
|
#define _Jv_HaveCondDestroy
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
int _Jv_CondWait (_Jv_ConditionVariable_t *cv, _Jv_Mutex_t *mu, jlong millis, jint nanos);
|
|
|
|
void _Jv_CondInit (_Jv_ConditionVariable_t *cv);
|
|
|
|
void _Jv_CondDestroy (_Jv_ConditionVariable_t *cv);
|
|
|
|
int _Jv_CondNotify (_Jv_ConditionVariable_t *cv, _Jv_Mutex_t *);
|
|
|
|
int _Jv_CondNotifyAll (_Jv_ConditionVariable_t *cv, _Jv_Mutex_t *);
|
2000-03-15 23:03:19 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Mutexes.
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
// We use CRITICAL_SECTIONs instead of CreateMutex() for better performance
|
2000-03-15 23:03:19 +01:00
|
|
|
//
|
|
|
|
|
2003-10-21 06:46:19 +02:00
|
|
|
// Returns 0 if the mutex lock is held by the current thread, and 1 otherwise.
|
|
|
|
inline int _Jv_MutexCheckMonitor (_Jv_Mutex_t *mu)
|
|
|
|
{
|
|
|
|
return (mu->owner != GetCurrentThreadId ( ));
|
|
|
|
}
|
|
|
|
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
inline void _Jv_MutexInit (_Jv_Mutex_t *mu)
|
2000-03-15 23:03:19 +01:00
|
|
|
{
|
2003-01-28 23:23:36 +01:00
|
|
|
mu->owner = 0UL;
|
|
|
|
mu->refcount = 0;
|
|
|
|
InitializeCriticalSection (&(mu->cs));
|
2000-03-15 23:03:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define _Jv_HaveMutexDestroy
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
inline void _Jv_MutexDestroy (_Jv_Mutex_t *mu)
|
2000-03-15 23:03:19 +01:00
|
|
|
{
|
2003-01-28 23:23:36 +01:00
|
|
|
mu->owner = 0UL;
|
|
|
|
mu->refcount = 0;
|
|
|
|
DeleteCriticalSection (&(mu->cs));
|
2000-03-15 23:03:19 +01:00
|
|
|
mu = NULL;
|
|
|
|
}
|
|
|
|
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
inline int _Jv_MutexUnlock (_Jv_Mutex_t *mu)
|
|
|
|
{
|
2003-01-28 23:23:36 +01:00
|
|
|
if (mu->owner == GetCurrentThreadId ( ))
|
|
|
|
{
|
|
|
|
mu->refcount--;
|
|
|
|
if (mu->refcount == 0)
|
|
|
|
mu->owner = 0UL;
|
|
|
|
LeaveCriticalSection (&(mu->cs));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 1;
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
}
|
2000-03-15 23:03:19 +01:00
|
|
|
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
inline int _Jv_MutexLock (_Jv_Mutex_t *mu)
|
2000-03-15 23:03:19 +01:00
|
|
|
{
|
2003-01-28 23:23:36 +01:00
|
|
|
EnterCriticalSection (&(mu->cs));
|
|
|
|
mu->owner = GetCurrentThreadId ( );
|
|
|
|
mu->refcount++;
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
return 0;
|
2000-03-15 23:03:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Thread creation and manipulation.
|
|
|
|
//
|
|
|
|
|
|
|
|
void _Jv_InitThreads (void);
|
2000-12-30 13:18:39 +01:00
|
|
|
_Jv_Thread_t *_Jv_ThreadInitData (java::lang::Thread *thread);
|
|
|
|
void _Jv_ThreadDestroyData (_Jv_Thread_t *data);
|
2000-03-15 23:03:19 +01:00
|
|
|
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
inline java::lang::Thread* _Jv_ThreadCurrent (void)
|
2000-03-15 23:03:19 +01:00
|
|
|
{
|
|
|
|
extern DWORD _Jv_ThreadKey;
|
|
|
|
return (java::lang::Thread *) TlsGetValue(_Jv_ThreadKey);
|
|
|
|
}
|
|
|
|
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
inline _Jv_Thread_t *_Jv_ThreadCurrentData(void)
|
2000-03-15 23:03:19 +01:00
|
|
|
{
|
|
|
|
extern DWORD _Jv_ThreadDataKey;
|
|
|
|
return (_Jv_Thread_t *) TlsGetValue(_Jv_ThreadDataKey);
|
|
|
|
}
|
|
|
|
|
win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to enable safer wait() algorithm.
2002-02-01 Adam Megacz <adam@xwt.org>
* include/win32-threads.h (_Jv_ConditionVariable_t): Now a struct, to
enable safer wait() algorithm.
(_Jv_CondWait, _Jv_CondInit, _Jv_CondDestroy, _Jv_CondNotify,
_Jv_CondNotifyAll): Implementations moved to win32-threads.cc.
(_Jv_MutexInit, _Jv_HaveMutexDestroy, _Jv_MutexUnlock,
_Jv_MutexLock, _Jv_ThreadYield): Reimplement using CRITICAL_SECTIONs
instead of mutex.
(_Jv_ThreadYield): Don't call Sleep(), because it crashes win98.
From-SVN: r49427
2002-02-02 05:27:34 +01:00
|
|
|
inline void _Jv_ThreadYield (void)
|
2000-03-15 23:03:19 +01:00
|
|
|
{
|
2003-01-28 23:23:36 +01:00
|
|
|
Sleep (0);
|
2000-03-15 23:03:19 +01:00
|
|
|
}
|
|
|
|
|
2001-05-22 08:47:48 +02:00
|
|
|
void _Jv_ThreadRegister (_Jv_Thread_t *data);
|
|
|
|
void _Jv_ThreadUnRegister ();
|
|
|
|
|
2000-03-15 23:03:19 +01:00
|
|
|
void _Jv_ThreadSetPriority (_Jv_Thread_t *data, jint prio);
|
|
|
|
void _Jv_ThreadStart (java::lang::Thread *thread, _Jv_Thread_t *data,
|
|
|
|
_Jv_ThreadStartFunc *meth);
|
|
|
|
void _Jv_ThreadWait (void);
|
|
|
|
void _Jv_ThreadInterrupt (_Jv_Thread_t *data);
|
|
|
|
|
2003-09-19 10:28:43 +02:00
|
|
|
//
|
|
|
|
// Thread interruption support
|
|
|
|
//
|
|
|
|
|
|
|
|
// Gets the auto-reset event for the current thread which is
|
|
|
|
// signalled by _Jv_ThreadInterrupt. The caller can wait on this
|
|
|
|
// event in addition to other waitable objects.
|
|
|
|
//
|
|
|
|
// NOTE: After waiting on this event with WaitForMultipleObjects,
|
|
|
|
// you should ALWAYS use the return value of WaitForMultipleObjects
|
|
|
|
// to test whether this event was signalled and whether thread
|
|
|
|
// interruption has occurred. You should do this instead of checking
|
|
|
|
// the thread's interrupted_flag, because someone could have reset
|
|
|
|
// this flag in the interval of time between the return of
|
|
|
|
// WaitForMultipleObjects and the time you query interrupted_flag.
|
|
|
|
// See java/lang/natWin32Process.cc (waitFor) for an example.
|
|
|
|
HANDLE _Jv_Win32GetInterruptEvent (void);
|
|
|
|
|
2000-03-15 23:03:19 +01:00
|
|
|
// Remove defines from <windows.h> that conflict with various things in libgcj code
|
|
|
|
|
|
|
|
#undef TRUE
|
|
|
|
#undef FALSE
|
|
|
|
#undef MAX_PRIORITY
|
|
|
|
#undef MIN_PRIORITY
|
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
#undef interface
|
|
|
|
#undef STRICT
|
|
|
|
#undef VOID
|
|
|
|
|
|
|
|
#endif /* __JV_WIN32_THREADS__ */
|