8341558: [AIX] build broken after 8341413

Reviewed-by: kbarrett
This commit is contained in:
Martin Doerr 2024-10-05 18:34:31 +00:00
parent 1c3e56c3e4
commit df763cd2c2
2 changed files with 0 additions and 8 deletions

View File

@ -40,7 +40,6 @@ OSThread::OSThread()
_ucontext(nullptr),
_expanding_stack(0),
_alt_sig_stack(nullptr),
_last_cpu_times(),
_startThread_lock(new Monitor(Mutex::event, "startThread_lock")) {
sigemptyset(&_caller_sigmask);
}

View File

@ -131,13 +131,6 @@ class OSThread : public OSThreadBase {
return _startThread_lock;
}
// The last measured values of cpu timing to prevent the "stale
// value return" bug in thread_cpu_time.
volatile struct {
jlong sys;
jlong user;
} _last_cpu_times;
// Printing
uintx thread_id_for_printing() const override {
return (uintx)_thread_id;