8276588: Change "ccc" to "CSR" in HotSpot sources

Reviewed-by: dcubed, kbarrett
This commit is contained in:
Joe Darcy 2021-11-03 21:20:09 +00:00
parent 32895ac609
commit f3320d2fbd
2 changed files with 3 additions and 3 deletions

View File

@ -728,7 +728,7 @@ oop InstanceKlass::protection_domain() const {
return java_lang_Class::protection_domain(java_mirror());
}
// To remove these from requires an incompatible change and CCC request.
// To remove these from requires an incompatible change and CSR review.
objArrayOop InstanceKlass::signers() const {
// return the signers from the mirror
return java_lang_Class::signers(java_mirror());

View File

@ -86,12 +86,12 @@
// MANAGEABLE flags are writeable external product flags.
// They are dynamically writeable through the JDK management interface
// (com.sun.management.HotSpotDiagnosticMXBean API) and also through JConsole.
// These flags are external exported interface (see CCC). The list of
// These flags are external exported interface (see CSR). The list of
// manageable flags can be queried programmatically through the management
// interface.
//
// A flag can be made as "manageable" only if
// - the flag is defined in a CCC as an external exported interface.
// - the flag is defined in a CSR request as an external exported interface.
// - the VM implementation supports dynamic setting of the flag.
// This implies that the VM must *always* query the flag variable
// and not reuse state related to the flag state at any given time.