comparison src/share/vm/runtime/handles.hpp @ 20804:7848fc12602b

Merge with jdk8u40-b25
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 07 Apr 2015 14:58:49 +0200
parents 4ca6dc0799b6 833b0f92429a
children
comparison
equal deleted inserted replaced
20184:84105dcdb05b 20804:7848fc12602b
1 /* 1 /*
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
225 int _no_handle_mark_nesting; 225 int _no_handle_mark_nesting;
226 #endif 226 #endif
227 HandleArea* _prev; // link to outer (older) area 227 HandleArea* _prev; // link to outer (older) area
228 public: 228 public:
229 // Constructor 229 // Constructor
230 HandleArea(HandleArea* prev) : Arena(Chunk::tiny_size) { 230 HandleArea(HandleArea* prev) : Arena(mtThread, Chunk::tiny_size) {
231 debug_only(_handle_mark_nesting = 0); 231 debug_only(_handle_mark_nesting = 0);
232 debug_only(_no_handle_mark_nesting = 0); 232 debug_only(_no_handle_mark_nesting = 0);
233 _prev = prev; 233 _prev = prev;
234 } 234 }
235 235