summaryrefslogtreecommitdiff
path: root/runtime/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/thread.h')
-rw-r--r--runtime/thread.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/thread.h b/runtime/thread.h
index b304cef74d..941867ce2d 100644
--- a/runtime/thread.h
+++ b/runtime/thread.h
@@ -581,11 +581,6 @@ class Thread {
return poison_object_cookie_;
}
- // Parking for 0ns of relative time means an untimed park, negative (though
- // should be handled in java code) returns immediately
- void Park(bool is_absolute, int64_t time) REQUIRES_SHARED(Locks::mutator_lock_);
- void Unpark();
-
private:
void NotifyLocked(Thread* self) REQUIRES(wait_mutex_);
@@ -1548,8 +1543,6 @@ class Thread {
// Thread "interrupted" status; stays raised until queried or thrown.
Atomic<bool32_t> interrupted;
- AtomicInteger park_state_;
-
// True if the thread is allowed to access a weak ref (Reference::GetReferent() and system
// weaks) and to potentially mark an object alive/gray. This is used for concurrent reference
// processing of the CC collector only. This is thread local so that we can enable/disable weak