Skip to content

Commit 807186f

Browse files
author
Kim Barrett
committedAug 5, 2024
8337784: Fix simple -Wzero-as-null-pointer-constant warnings in linux/posix code
Reviewed-by: stefank, shade
1 parent e68df52 commit 807186f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎src/hotspot/os/linux/os_linux.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ static void *thread_native_entry(Thread *thread) {
864864
log_info(os, thread)("Thread finished (tid: " UINTX_FORMAT ", pthread id: " UINTX_FORMAT ").",
865865
os::current_thread_id(), (uintx) pthread_self());
866866

867-
return 0;
867+
return nullptr;
868868
}
869869

870870
// On Linux, glibc places static TLS blocks (for __thread variables) on
@@ -4449,7 +4449,7 @@ void os::init(void) {
44494449
check_pax();
44504450

44514451
// Check the availability of MADV_POPULATE_WRITE.
4452-
FLAG_SET_DEFAULT(UseMadvPopulateWrite, (::madvise(0, 0, MADV_POPULATE_WRITE) == 0));
4452+
FLAG_SET_DEFAULT(UseMadvPopulateWrite, (::madvise(nullptr, 0, MADV_POPULATE_WRITE) == 0));
44534453

44544454
os::Posix::init();
44554455
}

‎src/hotspot/os/posix/perfMemory_posix.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2024, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2012, 2021 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -1329,7 +1329,7 @@ void PerfMemory::attach(int vmid, char** addrp, size_t* sizep, TRAPS) {
13291329
//
13301330
void PerfMemory::detach(char* addr, size_t bytes) {
13311331

1332-
assert(addr != 0, "address sanity check");
1332+
assert(addr != nullptr, "address sanity check");
13331333
assert(bytes > 0, "capacity sanity check");
13341334

13351335
if (PerfMemory::contains(addr) || PerfMemory::contains(addr + bytes - 1)) {

‎src/hotspot/os/posix/signals_posix.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1719,7 +1719,7 @@ static int SR_initialize() {
17191719
struct sigaction act;
17201720
char *s;
17211721
// Get signal number to use for suspend/resume
1722-
if ((s = ::getenv("_JAVA_SR_SIGNUM")) != 0) {
1722+
if ((s = ::getenv("_JAVA_SR_SIGNUM")) != nullptr) {
17231723
int sig;
17241724
bool result = parse_integer(s, &sig);
17251725
if (result && sig > MAX2(SIGSEGV, SIGBUS) && // See 4355769.
@@ -1742,7 +1742,7 @@ static int SR_initialize() {
17421742
pthread_sigmask(SIG_BLOCK, nullptr, &act.sa_mask);
17431743
remove_error_signals_from_set(&(act.sa_mask));
17441744

1745-
if (sigaction(PosixSignals::SR_signum, &act, 0) == -1) {
1745+
if (sigaction(PosixSignals::SR_signum, &act, nullptr) == -1) {
17461746
return -1;
17471747
}
17481748

0 commit comments

Comments
 (0)
Please sign in to comment.