comparison src/share/vm/runtime/handles.hpp @ 14318:1020b892787b

Merge
author hseigel
date Sun, 02 Feb 2014 15:31:40 -0500
parents 63a4eb8bcd23
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14317:b59507f713e0 14318:1020b892787b
265 // Handles are allocated in a (growable) thread local handle area. Deallocation 265 // Handles are allocated in a (growable) thread local handle area. Deallocation
266 // is managed using a HandleMark. It should normally not be necessary to use 266 // is managed using a HandleMark. It should normally not be necessary to use
267 // HandleMarks manually. 267 // HandleMarks manually.
268 // 268 //
269 // A HandleMark constructor will record the current handle area top, and the 269 // A HandleMark constructor will record the current handle area top, and the
270 // desctructor will reset the top, destroying all handles allocated in between. 270 // destructor will reset the top, destroying all handles allocated in between.
271 // The following code will therefore NOT work: 271 // The following code will therefore NOT work:
272 // 272 //
273 // Handle h; 273 // Handle h;
274 // { 274 // {
275 // HandleMark hm; 275 // HandleMark hm;