[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:32:31
|
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: Open Resolution: None Priority: 5 Submitted By: Chris Pickett (ihatemcgill) Assigned to: Nobody/Anonymous (nobody) 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 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105523&aid=704531&group_id=5523 |