comparison src/share/vm/libadt/port.hpp @ 12146:9758d9f36299

8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced Summary: declare all user-defined operator new()s within Hotspot code with the empty throw() exception specification Reviewed-by: coleenp, twisti, dholmes, hseigel, dcubed, kvn, ccheung Contributed-by: lois.foltan@oracle.com
author coleenp
date Thu, 29 Aug 2013 18:56:29 -0400
parents f95d63e2154a
children 2b8e28fdf503
comparison
equal deleted inserted replaced
12145:cef1e56a4d88 12146:9758d9f36299
1 /* 1 /*
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2013, 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.
161 extern void *safe_malloc (const char *file, unsigned line, unsigned size); 161 extern void *safe_malloc (const char *file, unsigned line, unsigned size);
162 extern void safe_free (const char *file, unsigned line, void *ptr); 162 extern void safe_free (const char *file, unsigned line, void *ptr);
163 extern void *safe_calloc (const char *file, unsigned line, unsigned nitems, unsigned size); 163 extern void *safe_calloc (const char *file, unsigned line, unsigned nitems, unsigned size);
164 extern void *safe_realloc(const char *file, unsigned line, void *ptr, unsigned size); 164 extern void *safe_realloc(const char *file, unsigned line, void *ptr, unsigned size);
165 extern char *safe_strdup (const char *file, unsigned line, const char *src); 165 extern char *safe_strdup (const char *file, unsigned line, const char *src);
166 inline void *operator new( size_t size ) { return malloc(size); } 166 inline void *operator new( size_t size ) throw() { return malloc(size); }
167 inline void operator delete( void *ptr ) { free(ptr); } 167 inline void operator delete( void *ptr ) { free(ptr); }
168 #endif 168 #endif
169 169
170 //----------------------------------------------------------------------------- 170 //-----------------------------------------------------------------------------
171 // And now, the bit-size-specified integer sizes 171 // And now, the bit-size-specified integer sizes
172 typedef signed char int8; 172 typedef signed char int8;