Skip to content

Commit df763cd

Browse files
committedOct 5, 2024
8341558: [AIX] build broken after 8341413
Reviewed-by: kbarrett
1 parent 1c3e56c commit df763cd

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed
 

‎src/hotspot/os/aix/osThread_aix.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ OSThread::OSThread()
4040
_ucontext(nullptr),
4141
_expanding_stack(0),
4242
_alt_sig_stack(nullptr),
43-
_last_cpu_times(),
4443
_startThread_lock(new Monitor(Mutex::event, "startThread_lock")) {
4544
sigemptyset(&_caller_sigmask);
4645
}

‎src/hotspot/os/aix/osThread_aix.hpp

-7
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,6 @@ class OSThread : public OSThreadBase {
131131
return _startThread_lock;
132132
}
133133

134-
// The last measured values of cpu timing to prevent the "stale
135-
// value return" bug in thread_cpu_time.
136-
volatile struct {
137-
jlong sys;
138-
jlong user;
139-
} _last_cpu_times;
140-
141134
// Printing
142135
uintx thread_id_for_printing() const override {
143136
return (uintx)_thread_id;

0 commit comments

Comments
 (0)
Please sign in to comment.