comparison src/share/vm/runtime/jniHandles.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 da91efe96a93
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
104 oop _handles[block_size_in_oops]; // The handles 104 oop _handles[block_size_in_oops]; // The handles
105 int _top; // Index of next unused handle 105 int _top; // Index of next unused handle
106 JNIHandleBlock* _next; // Link to next block 106 JNIHandleBlock* _next; // Link to next block
107 107
108 // The following instance variables are only used by the first block in a chain. 108 // The following instance variables are only used by the first block in a chain.
109 // Having two types of blocks complicates the code and the space overhead in negligble. 109 // Having two types of blocks complicates the code and the space overhead in negligible.
110 JNIHandleBlock* _last; // Last block in use 110 JNIHandleBlock* _last; // Last block in use
111 JNIHandleBlock* _pop_frame_link; // Block to restore on PopLocalFrame call 111 JNIHandleBlock* _pop_frame_link; // Block to restore on PopLocalFrame call
112 oop* _free_list; // Handle free list 112 oop* _free_list; // Handle free list
113 int _allocate_before_rebuild; // Number of blocks to allocate before rebuilding free list 113 int _allocate_before_rebuild; // Number of blocks to allocate before rebuilding free list
114 114