[Sablevm-bugs] [ sablevm-Bugs-704531 ] super and synchronized access flags are identical
Brought to you by:
egagnon
From: SourceForge.net <no...@so...> - 2003-03-16 15:58:28
|
Bugs item #704531, was opened at 2003-03-16 10:44 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105523&aid=704531&group_id=5523 Category: Other Group: SableVM Status: Closed Resolution: Rejected >Priority: 1 Submitted By: Chris Pickett (ihatemcgill) Assigned to: Etienne M. Gagnon (egagnon) Summary: super and synchronized access flags are identical Initial Comment: From constants.h: /* access flags */ #define SVM_ACC_PUBLIC 0x0001 #define SVM_ACC_PRIVATE 0x0002 #define SVM_ACC_PROTECTED 0x0004 #define SVM_ACC_STATIC 0x0008 #define SVM_ACC_FINAL 0x0010 #define SVM_ACC_SUPER 0x0020 #define SVM_ACC_SYNCHRONIZED 0x0020 #define SVM_ACC_VOLATILE 0x0040 #define SVM_ACC_TRANSIENT 0x0080 #define SVM_ACC_NATIVE 0x0100 #define SVM_ACC_INTERFACE 0x0200 #define SVM_ACC_ABSTRACT 0x0400 #define SVM_ACC_STRICT 0x0800 #define SVM_ACC_INTERNAL 0x1000 ---------------------------------------------------------------------- Comment By: Etienne M. Gagnon (egagnon) Date: 2003-03-16 11:09 Message: Logged In: YES user_id=15365 In the JVM specification [4.6 Methods] you can read: ACC_SYNCHRONIZED 0x0020 Declared synchronized; invocation is wrapped in a monitor lock. ---------------------------------------------------------------------- Comment By: Chris Pickett (ihatemcgill) Date: 2003-03-16 10:55 Message: Logged In: YES user_id=630752 /* access flags */ #define SVM_ACC_PUBLIC 0x0001 #define SVM_ACC_PRIVATE 0x0002 #define SVM_ACC_PROTECTED 0x0004 #define SVM_ACC_STATIC 0x0008 #define SVM_ACC_FINAL 0x0010 #define SVM_ACC_SUPER 0x0020 #define SVM_ACC_SYNCHRONIZED 0x0040 #define SVM_ACC_VOLATILE 0x0080 #define SVM_ACC_TRANSIENT 0x0100 #define SVM_ACC_NATIVE 0x0200 #define SVM_ACC_INTERFACE 0x0400 #define SVM_ACC_ABSTRACT 0x0800 #define SVM_ACC_STRICT 0x1000 #define SVM_ACC_INTERNAL 0x2000 is fixed. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105523&aid=704531&group_id=5523 |