ports/java/jdk13/files/patch-mutexLocker.cpp
Greg Lewis 38e03fb03a . Make HotSpot compile with gcc 3.3.1.
Submitted by:	Munehiro Matsuda <haro@h4.dion.ne.jp>
Reminded by:	mi
2003-10-08 00:42:23 +00:00

13 lines
455 B
C++

$FreeBSD$
--- ../../hotspot1.3.1/src/share/vm/runtime/mutexLocker.cpp 17 Aug 2001 22:56:20 -0000 1.1.1.2
+++ ../../hotspot1.3.1/src/share/vm/runtime/mutexLocker.cpp 27 Jul 2003 10:41:16 -0000 1.2
@@ -90,7 +90,7 @@
#endif
#define def(var, type, pri, vm_block) \
- var = new type(Mutex::##pri, #var, vm_block)
+ var = new type(Mutex::pri, #var, vm_block)
void mutex_init() {
def(Patching_lock , Mutex , leaf, true );