Skip to content

Commit 6234206

Browse files
committed
Merge
2 parents c2b462c + efc96d1 commit 6234206

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

src/jdk.attach/share/classes/com/sun/tools/attach/spi/AttachProvider.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,18 @@
4646
* <p> An attach provider implementation is typically tied to a Java virtual
4747
* machine implementation, version, or even mode of operation. That is, a specific
4848
* provider implementation will typically only be capable of attaching to
49-
* a specific Java virtual machine implementation or version. For example, Sun's
49+
* a specific Java virtual machine implementation or version. For example, Oracle's
5050
* JDK implementation ships with provider implementations that can only attach to
51-
* Sun's <i>HotSpot</i> virtual machine. In general, if an environment
51+
* Oracle's <i>HotSpot</i> virtual machine. In general, if an environment
5252
* consists of Java virtual machines of different versions and from different
5353
* vendors then there will be an attach provider implementation for each
5454
* <i>family</i> of implementations or versions.
5555
*
5656
* <p> An attach provider is identified by its {@link #name <i>name</i>} and
5757
* {@link #type <i>type</i>}. The <i>name</i> is typically, but not required to
58-
* be, a name that corresponds to the VM vendor. The Sun JDK implementation,
59-
* for example, ships with attach providers that use the name <i>"sun"</i>. The
58+
* be, a name that corresponds to the VM vendor. The Oracle JDK implementation,
59+
* for example, ships with attach providers that use the package name <i>"sun"</i>
60+
* (for historical reasons). The
6061
* <i>type</i> typically corresponds to the attach mechanism. For example, an
6162
* implementation that uses the Doors inter-process communication mechanism
6263
* might use the type <i>"doors"</i>. The purpose of the name and type is to

src/jdk.crypto.cryptoki/share/native/libj2pkcs11/pkcs11gcm2.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
/*
2-
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
66
* under the terms of the GNU General Public License version 2 only, as
7-
* published by the Free Software Foundation.
7+
* published by the Free Software Foundation. Oracle designates this
8+
* particular file as subject to the "Classpath" exception as provided
9+
* by Oracle in the LICENSE file that accompanied this code.
810
*
911
* This code is distributed in the hope that it will be useful, but WITHOUT
1012
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or

0 commit comments

Comments
 (0)