mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
6772413: code cleanup
Removed lines in adm64.make with interpret.o and moved few constant strings from header files. Reviewed-by: never
This commit is contained in:
parent
ce3f3dd8d3
commit
f2c8d25c73
5 changed files with 12 additions and 13 deletions
|
@ -25,6 +25,14 @@
|
|||
# include "incls/_precompiled.incl"
|
||||
# include "incls/_perfMemory.cpp.incl"
|
||||
|
||||
// Prefix of performance data file.
|
||||
const char PERFDATA_NAME[] = "hsperfdata";
|
||||
|
||||
// Add 1 for the '_' character between PERFDATA_NAME and pid. The '\0' terminating
|
||||
// character will be included in the sizeof(PERFDATA_NAME) operation.
|
||||
static const size_t PERFDATA_FILENAME_LEN = sizeof(PERFDATA_NAME) +
|
||||
UINT_CHARS + 1;
|
||||
|
||||
char* PerfMemory::_start = NULL;
|
||||
char* PerfMemory::_end = NULL;
|
||||
char* PerfMemory::_top = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue