jdk/src/share/classes/sun/misc/Contended.java
author alanb
Fri, 22 Feb 2013 14:04:06 +0000
changeset 16023 58ecc1b8327b
parent 15336 c6790ea8d397
child 17935 58ede13b724e
permissions -rw-r--r--
8008290: (profiles) Startup regression due to additional checking of JAR file manifests Reviewed-by: lancea, chegar, iris, mchung, sherman
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15336
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     1
/*
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     4
 *
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    10
 *
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    15
 * accompanied this code).
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    16
 *
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    20
 *
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    23
 * questions.
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    24
 */
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    25
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    26
package sun.misc;
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    27
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    28
import java.lang.annotation.ElementType;
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    29
import java.lang.annotation.Retention;
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    30
import java.lang.annotation.RetentionPolicy;
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    31
import java.lang.annotation.Target;
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    32
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    33
/**
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    34
 * This annotation marks classes and fields as considered to be contended.
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    35
 * @since 1.8
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    36
 */
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    37
@Retention(RetentionPolicy.RUNTIME)
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    38
@Target({ElementType.FIELD, ElementType.TYPE})
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    39
public @interface Contended {
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    40
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    41
    /**
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    42
      Defines the contention group tag.
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    43
     */
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    44
    String value() default "";
c6790ea8d397 8006123: Support @Contended Annotation - JEP 142 (jdk part)
dl
parents:
diff changeset
    45
}