comparison src/share/vm/runtime/synchronizer.hpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents de6a9e811145
children e7d8cbe4db3b
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
47 47
48 // This is full version of monitor enter and exit. I choose not 48 // This is full version of monitor enter and exit. I choose not
49 // to use enter() and exit() in order to make sure user be ware 49 // to use enter() and exit() in order to make sure user be ware
50 // of the performance and semantics difference. They are normally 50 // of the performance and semantics difference. They are normally
51 // used by ObjectLocker etc. The interpreter and compiler use 51 // used by ObjectLocker etc. The interpreter and compiler use
52 // assembly copies of these routines. Please keep them synchornized. 52 // assembly copies of these routines. Please keep them synchronized.
53 // 53 //
54 // attempt_rebias flag is used by UseBiasedLocking implementation 54 // attempt_rebias flag is used by UseBiasedLocking implementation
55 static void fast_enter (Handle obj, BasicLock* lock, bool attempt_rebias, TRAPS); 55 static void fast_enter (Handle obj, BasicLock* lock, bool attempt_rebias, TRAPS);
56 static void fast_exit (oop obj, BasicLock* lock, Thread* THREAD); 56 static void fast_exit (oop obj, BasicLock* lock, Thread* THREAD);
57 57