8233359: Add global sized operator delete definitions
authorkbarrett
Fri, 01 Nov 2019 16:21:17 -0400
changeset 58898 4ec9fc2b2f0d
parent 58897 76638c631869
child 58899 5573a7098439
8233359: Add global sized operator delete definitions Summary: Added new definitions. Reviewed-by: dholmes
src/hotspot/share/memory/operator_new.cpp
--- 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