diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-21 23:01:23 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-21 23:01:23 +0000 |
commit | 6579a9b605e38cd157ce3c266217d2708eade2d2 (patch) | |
tree | 3f1b746fb7ed2826b537fda676eb0ca01977d1ab /libjava/include | |
parent | cfbfd5e6f61b61ee0d498fabf21fc299315ed6a0 (diff) | |
download | gcc-6579a9b605e38cd157ce3c266217d2708eade2d2.tar.gz |
* include/posix-threads.h (_Jv_MutexDestroy): Use
_Jv_PthreadGetMutex.
(_Jv_MutexLock): Likewise.
(_Jv_MutexUnlock): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29569 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/posix-threads.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/include/posix-threads.h b/libjava/include/posix-threads.h index 38629f44b01..5c6cc7bdf43 100644 --- a/libjava/include/posix-threads.h +++ b/libjava/include/posix-threads.h @@ -194,7 +194,7 @@ void _Jv_MutexInit (_Jv_Mutex_t *mu); inline void _Jv_MutexDestroy (_Jv_Mutex_t *mu) { - pthread_mutex_destroy (mu); + pthread_mutex_destroy (_Jv_PthreadGetMutex (mu)); } #else /* HAVE_RECURSIVE_MUTEX */ @@ -209,7 +209,7 @@ extern void _Jv_MutexDestroy (_Jv_Mutex_t *mu); inline int _Jv_MutexLock (_Jv_Mutex_t *mu) { - int r = pthread_mutex_lock (mu); + int r = pthread_mutex_lock (_Jv_PthreadGetMutex (mu)); #ifdef PTHREAD_MUTEX_IS_STRUCT if (! r) ++mu->count; @@ -220,7 +220,7 @@ _Jv_MutexLock (_Jv_Mutex_t *mu) inline int _Jv_MutexUnlock (_Jv_Mutex_t *mu) { - int r = pthread_mutex_unlock (mu); + int r = pthread_mutex_unlock (_Jv_PthreadGetMutex (mu)); #ifdef PTHREAD_MUTEX_IS_STRUCT if (! r) --mu->count; |