8387996: Remove reference to -d64 from serviceability tool manpages

Reviewed-by: dholmes
This commit is contained in:
April Ivy 2026-07-13 04:31:35 +00:00 committed by David Holmes
parent 7a5e6ef6aa
commit b3d98954d1
2 changed files with 4 additions and 8 deletions

View File

@ -1,5 +1,5 @@
---
# Copyright (c) 2004, 2024, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2004, 2026, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@ -50,10 +50,7 @@ jinfo - generate Java configuration information for a specified Java process
The `jinfo` command prints Java configuration information for a specified Java
process. The configuration information includes Java system properties and JVM
command-line flags. If the specified process is running on a 64-bit JVM, then
you might need to specify the `-J-d64` option, for example:
> `jinfo -J-d64 -sysprops` *pid*
command-line flags.
This command is unsupported and might not be available in future releases of
the JDK. In Windows Systems where `dbgeng.dll` is not present, the Debugging

View File

@ -1,5 +1,5 @@
---
# Copyright (c) 2004, 2024, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2004, 2026, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@ -52,8 +52,7 @@ The `jstack` command prints Java stack traces of Java threads for a specified
Java process. For each Java frame, the full class name, method name, byte code
index (BCI), and line number, when available, are printed. C++ mangled names
aren't demangled. To demangle C++ names, the output of this command can be
piped to `c++filt`. When the specified process is running on a 64-bit JVM, you
might need to specify the `-J-d64` option, for example: `jstack -J-d64` *pid*.
piped to `c++filt`.
**Note:**