Home
last modified time | relevance | path

Searched refs:paused_thread (Results 1 – 1 of 1) sorted by relevance

/art/test/1922-owned-monitors-info/src/art/
DTest1922.java33 private volatile Thread paused_thread; field in Test1922.ThreadPauser
35 paused_thread = null; in ThreadPauser()
39 paused_thread = null; in ThreadPauser()
45 this.paused_thread = Thread.currentThread(); in run()
47 Suspension.suspend(paused_thread); in run()
49 while (this.paused_thread != null) {} in run()
53 while (this.paused_thread == null) {} in waitForOtherThreadToPause()
55 while (!Suspension.isSuspended(this.paused_thread)) {} in waitForOtherThreadToPause()
60 if (this.paused_thread == null) { in wakeupOtherThread()
64 Suspension.resume(this.paused_thread); in wakeupOtherThread()
[all …]