blob: 7f00ab674a47d81eab0acf37e5a663708b204581 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$FreeBSD: ports/java/jdk13/files/patch-mutex.hpp,v 1.1 2004/11/27 05:44:12 glewis Exp $
--- ../../hotspot1.3.1/src/share/vm/runtime/mutex.hpp 17 Aug 2001 22:56:19 -0000 1.1.1.2
+++ ../../hotspot1.3.1/src/share/vm/runtime/mutex.hpp 22 Nov 2004 17:19:42 -0000
@@ -55,7 +55,6 @@
debug_only(Thread* _last_owner;) // the last thread to own the lock
#endif
- void set_owner_implementation(Thread* owner) PRODUCT_RETURN;
void trace (const char* operation) PRODUCT_RETURN;
void check_prelock_state (Thread* thread) PRODUCT_RETURN;
void check_block_state (Thread* thread) PRODUCT_RETURN;
@@ -69,6 +68,7 @@
_allow_vm_block_flag = true
};
+ void set_owner_implementation(Thread* owner) PRODUCT_RETURN;
Mutex(int prio, const char *name, bool allow_vm_block = !_allow_vm_block_flag);
~Mutex();
|