7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems

Define jlong as long on all LP64 platforms and add JLONG_FORMAT macro.

Reviewed-by: dholmes, coleenp, mikael, kvn
This commit is contained in:
Harold Seigel 2013-01-17 10:25:16 -05:00
parent 07e2e8803a
commit 68f3dd76c9
34 changed files with 87 additions and 111 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2013, 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
@ -243,13 +243,11 @@ outputStream& outputStream::indent() {
}
void outputStream::print_jlong(jlong value) {
// N.B. Same as INT64_FORMAT
print(os::jlong_format_specifier(), value);
print(JLONG_FORMAT, value);
}
void outputStream::print_julong(julong value) {
// N.B. Same as UINT64_FORMAT
print(os::julong_format_specifier(), value);
print(JULONG_FORMAT, value);
}
/**