8233359: Add global sized operator delete definitions
Summary: Added new definitions.
Reviewed-by: dholmes
--- a/src/hotspot/share/memory/operator_new.cpp Fri Nov 01 13:16:50 2019 -0700
+++ b/src/hotspot/share/memory/operator_new.cpp Fri Nov 01 16:21:17 2019 -0400
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -89,4 +89,12 @@
fatal("Should not call global delete []");
}
+void operator delete(void* p, size_t size) throw() {
+ fatal("Should not call global sized delete");
+}
+
+void operator delete [](void* p, size_t size) throw() {
+ fatal("Should not call global sized delete []");
+}
+
#endif // Non-product