mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
3ea68048cd
as EBUSY. These are taken from equivalent patches to jdk14 by green and myself.
14 lines
776 B
C
14 lines
776 B
C
$FreeBSD$
|
|
|
|
--- ../ext/plugin/oji-plugin/include/solaris/navig4/nspr/md/_pth.h 11 Jul 2001 21:45:07 -0000 1.1.1.1
|
|
+++ ../ext/plugin/oji-plugin/include/solaris/navig4/nspr/md/_pth.h 22 Nov 2004 17:19:42 -0000
|
|
@@ -52,7 +52,7 @@
|
|
#define PTHREAD_MUTEXATTR_INIT pthread_mutexattr_init
|
|
#define PTHREAD_MUTEXATTR_DESTROY pthread_mutexattr_destroy
|
|
#define PTHREAD_MUTEX_INIT(m, a) pthread_mutex_init(&(m), &(a))
|
|
-#define PTHREAD_MUTEX_IS_LOCKED(m) (EBUSY == pthread_mutex_trylock(&(m)))
|
|
+#define PTHREAD_MUTEX_IS_LOCKED(m) (0 != pthread_mutex_trylock(&(m)))
|
|
#define PTHREAD_CONDATTR_INIT pthread_condattr_init
|
|
#define PTHREAD_CONDATTR_DESTROY pthread_condattr_destroy
|
|
#define PTHREAD_COND_INIT(m, a) pthread_cond_init(&(m), &(a))
|