Skip to content

Commit d7e6e9b

Browse files
committedJan 10, 2022
8279643: JFR: Explain why path is sometimes missing from FileRead and FileWrite events
Reviewed-by: mgronlun
1 parent 0d19096 commit d7e6e9b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎src/jdk.jfr/share/classes/jdk/jfr/events/FileReadEvent.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2022, 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
@@ -42,7 +42,7 @@ public final class FileReadEvent extends AbstractJDKEvent {
4242
// EventHandler::write(..., String, long, boolean)
4343

4444
@Label("Path")
45-
@Description("Full path of the file")
45+
@Description("Full path of the file, or N/A if a file descriptor was used to create the stream, for example System.in")
4646
public String path;
4747

4848
@Label("Bytes Read")

‎src/jdk.jfr/share/classes/jdk/jfr/events/FileWriteEvent.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2022, 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
@@ -42,7 +42,7 @@ public final class FileWriteEvent extends AbstractJDKEvent {
4242
// EventHandler::write(..., String, long)
4343

4444
@Label("Path")
45-
@Description("Full path of the file")
45+
@Description("Full path of the file, or N/A if a file descriptor was used to create the stream, for example System.out and System.err")
4646
public String path;
4747

4848
@Label("Bytes Written")

0 commit comments

Comments
 (0)
Please sign in to comment.