Skip to content

Commit

Permalink
8298202: [AIX] Dead code elimination removed jfr constructor used by AIX
Browse files Browse the repository at this point in the history
Reviewed-by: dholmes, stuefe
  • Loading branch information
Tyler Steele committed Dec 7, 2022
1 parent 29f1c3c commit dd7385d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/hotspot/share/runtime/os_perf.hpp
Expand Up @@ -106,6 +106,14 @@ class SystemProcess : public CHeapObj<mtInternal> {
_next = NULL;
}

SystemProcess(int pid, char* name, char* path, char* command_line, SystemProcess* next) {
_pid = pid;
_name = name;
_path = path;
_command_line = command_line;
_next = next;
}

void set_next(SystemProcess* sys_process) {
_next = sys_process;
}
Expand Down

1 comment on commit dd7385d

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.