Searched defs:AWT_LOCK (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt.h61 #define AWT_LOCK()
90 * Unfortunately AWT_LOCK debugging does not work with XAWT due to mixed
98 #define AWT_LOCK() do { \ macro
153 #define AWT_LOCK() AWT_LOCK_IMPL() macro
H A Dfontpath.c51 #define AWT_LOCK() macro
554 AWT_LOCK();
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java214 * (such as AWT_LOCK) defined in awt.h, so if the implementation of these
240 private static final ReentrantLock AWT_LOCK = new ReentrantLock(); field in class:SunToolkit
241 private static final Condition AWT_LOCK_COND = AWT_LOCK.newCondition();
244 AWT_LOCK.lock();
248 return AWT_LOCK.tryLock();
252 AWT_LOCK.unlock();
276 return AWT_LOCK.isHeldByCurrentThread();

Completed in 47 milliseconds