From 0173f2477dec32cfad531c0d1a698fa805fd96da Mon Sep 17 00:00:00 2001 From: green Date: Sun, 9 Apr 2000 06:53:00 +0000 Subject: 2000-04-08 Anthony Green * include/posix-threads.h (_Jv_MutexUnlock): Replace _JV_NOT_OWNER. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33039 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/include/posix-threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libjava/include') diff --git a/libjava/include/posix-threads.h b/libjava/include/posix-threads.h index 03a43906bd6..5b1f075dc0d 100644 --- a/libjava/include/posix-threads.h +++ b/libjava/include/posix-threads.h @@ -136,7 +136,7 @@ inline int _Jv_MutexUnlock (_Jv_Mutex_t *mu) { if (_Jv_PthreadCheckMonitor (mu)) - return _JV_NOT_OWNER; + return 1; mu->count--; -- cgit v1.2.3