Skip to content

Commit

Permalink
Adjusted linux specific column type
Browse files Browse the repository at this point in the history
  • Loading branch information
schmelter-sap committed Jul 7, 2023
1 parent f42b72c commit 363d46a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hotspot/os/linux/vitals_linux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ class CPUTimeColumn: public Column {
}

public:
CPUTimeColumn(const char* category, const char* header, const char* name, const char* description)
: Column(category, header, name, description)
CPUTimeColumn(const char* category, const char* header, const char* name, const char* description, Extremum extremum)
: Column(category, header, name, description, extremum)
{
_clk_tck = ::sysconf(_SC_CLK_TCK);
_num_cores = os::active_processor_count();
Expand Down

0 comments on commit 363d46a

Please sign in to comment.