diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2004-12-17 07:02:51 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2004-12-17 07:02:51 +0000 |
commit | 55f5e15a50c8a7a0434cad4e9d3a2e34aca0c753 (patch) | |
tree | c4cc388f7c7996fa61df230fa2beb40b0f0ee494 /java/jdk14/files/patch-vm::os_bsd.hpp | |
parent | Switch from BROKEN to IGNORE to match other ports in this category. (diff) |
. Update to patchset 7.
. Fix a permissions problem with the plugins directory.
Approved by: phantom (maintainer)
Notes
Notes:
svn path=/head/; revision=124268
Diffstat (limited to 'java/jdk14/files/patch-vm::os_bsd.hpp')
-rw-r--r-- | java/jdk14/files/patch-vm::os_bsd.hpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/java/jdk14/files/patch-vm::os_bsd.hpp b/java/jdk14/files/patch-vm::os_bsd.hpp deleted file mode 100644 index cab94f46e4d3..000000000000 --- a/java/jdk14/files/patch-vm::os_bsd.hpp +++ /dev/null @@ -1,13 +0,0 @@ -$FreeBSD$ - ---- ../../hotspot/src/os/bsd/vm/os_bsd.hpp.orig Wed Oct 20 16:01:08 2004 -+++ ../../hotspot/src/os/bsd/vm/os_bsd.hpp Wed Oct 20 16:01:30 2004 -@@ -353,7 +353,7 @@ - bool trylock() { - verify(); - int status = pthread_mutex_trylock(_mutex); -- if (status == EBUSY) -+ if (status == EBUSY || status == EDEADLK) - return false; - assert(status == 0, "pthread_mutex_trylock"); - #ifndef PRODUCT |