From 28a214e99fabc2b5ced69726ae51393c56aebd3a Mon Sep 17 00:00:00 2001 From: Yasumasa Suenaga Date: Thu, 29 Jan 2026 09:12:59 +0900 Subject: [PATCH] Update src/jdk.hotspot.agent/linux/native/libsaproc/ps_core.c Co-authored-by: Chris Plummer --- src/jdk.hotspot.agent/linux/native/libsaproc/ps_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jdk.hotspot.agent/linux/native/libsaproc/ps_core.c b/src/jdk.hotspot.agent/linux/native/libsaproc/ps_core.c index e378a8657f4..623fcaf9331 100644 --- a/src/jdk.hotspot.agent/linux/native/libsaproc/ps_core.c +++ b/src/jdk.hotspot.agent/linux/native/libsaproc/ps_core.c @@ -717,7 +717,7 @@ static bool read_shared_lib_info(struct ps_prochandle* ph) { strcpy(lib_name, vdso_path); lib_fd = pathmap_open(lib_name); } else { - // Copy vDSO memory segment to temporal memory from core + // Copy vDSO memory segment from core to temporal memory // if vDSO binary is not available. lib_fd = memfd_create("[vdso] in core", 0); off64_t ofs = ph->core->vdso_offset;