diff options
author | kseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-26 16:31:06 +0000 |
---|---|---|
committer | kseitz <kseitz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-26 16:31:06 +0000 |
commit | 357620a14f8d63b53923d50577b1ea773f0379fa (patch) | |
tree | 1fa6120b44c9750c14438a1be5fa7c56c5336ae7 /libjava/include/no-gc.h | |
parent | 5da2078a593001a6b7c16798e40054d78a9aa84f (diff) | |
download | gcc-357620a14f8d63b53923d50577b1ea773f0379fa.tar.gz |
* include/no-gc.h (_Jv_SuspendThread): Declare.
(_Jv_ResumeThread): Likewise.
* include/boehm-gc.h (_Jv_SuspendThread): Declare.
(_Jv_ResumeThread): Likewise.
* nogc.cc (_Jv_SuspendThread): New function.
(_Jv_ResumeThread): Likewise.
* boehm.cc (_Jv_SuspendThread): New function.
(_Jv_ResumeThread): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115019 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include/no-gc.h')
-rw-r--r-- | libjava/include/no-gc.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libjava/include/no-gc.h b/libjava/include/no-gc.h index 18e79e13e10..193b8ea4d05 100644 --- a/libjava/include/no-gc.h +++ b/libjava/include/no-gc.h @@ -1,7 +1,7 @@ // -*- c++ -*- // no-gc.h - Defines for no garbage collector. -/* Copyright (C) 1998, 1999 Free Software Foundation +/* Copyright (C) 1998, 1999, 2006 Free Software Foundation This file is part of libgcj. @@ -12,6 +12,10 @@ details. */ #ifndef __JV_NO_GC__ #define __JV_NO_GC__ -// Nothing. +// Suspend the given thread. This includes suspending the calling thread. +extern "C" void _Jv_SuspendThread (_Jv_Thread_t *); + +// Resume a suspended thread. +extern "C" void _Jv_ResumeThread (_Jv_Thread_t *); #endif /* __JV_NO_GC__ */ |