Skip to content

Commit c55e7d5

Browse files
committedApr 27, 2020
8242034: Remove JRE_HOME references
Reviewed-by: mbaesken
1 parent 0bbdcda commit c55e7d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎src/hotspot/share/jfr/dcmd/jfrDcmds.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 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
@@ -342,7 +342,7 @@ void JfrCheckFlightRecordingDCmd::execute(DCmdSource source, TRAPS) {
342342
JfrStartFlightRecordingDCmd::JfrStartFlightRecordingDCmd(outputStream* output,
343343
bool heap) : DCmdWithParser(output, heap),
344344
_name("name", "Name that can be used to identify recording, e.g. \\\"My Recording\\\"", "STRING", false, NULL),
345-
_settings("settings", "Settings file(s), e.g. profile or default. See JRE_HOME/lib/jfr", "STRING SET", false),
345+
_settings("settings", "Settings file(s), e.g. profile or default. See JAVA_HOME/lib/jfr", "STRING SET", false),
346346
_delay("delay", "Delay recording start with (s)econds, (m)inutes), (h)ours), or (d)ays, e.g. 5h.", "NANOTIME", false, "0"),
347347
_duration("duration", "Duration of recording in (s)econds, (m)inutes, (h)ours, or (d)ays, e.g. 300s.", "NANOTIME", false, "0"),
348348
_disk("disk", "Recording should be persisted to disk", "BOOLEAN", false),

‎src/java.base/share/man/java.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\"t
2-
.\" Copyright (c) 1994, 2019, Oracle and/or its affiliates. All rights reserved.
2+
.\" Copyright (c) 1994, 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
@@ -1810,7 +1810,7 @@ in the information collected.
18101810
.B \f[CB]settings=\f[R]\f[I]path\f[R]
18111811
Specifies the path and name of the event settings file (of type JFC).
18121812
By default, the \f[CB]default.jfc\f[R] file is used, which is located in
1813-
\f[CB]JRE_HOME/lib/jfr\f[R].
1813+
\f[CB]JAVA_HOME/lib/jfr\f[R].
18141814
This default settings file collects a predefined set of information with
18151815
low overhead, so it has minimal impact on performance and can be used
18161816
with recordings that run continuously.

0 commit comments

Comments
 (0)
Please sign in to comment.