aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/new.cpp
diff options
context:
space:
mode:
authoramcewen <amcewen@bcs.org.uk>2011-04-10 11:34:40 +0100
committeramcewen <amcewen@bcs.org.uk>2011-04-10 11:34:40 +0100
commitedee02eaf19c4d13324959e6db881dc327342561 (patch)
treef389ed5f2b95735e833d6bca1c4ac7a0fc419d06 /cores/arduino/new.cpp
parent49155d0a4604eb50d756527ef9512499d2ea6cf4 (diff)
Added virtual destructor to Printable, which also requires new and delete operators to be added
Diffstat (limited to 'cores/arduino/new.cpp')
-rw-r--r--cores/arduino/new.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/cores/arduino/new.cpp b/cores/arduino/new.cpp
new file mode 100644
index 0000000..0f6d422
--- /dev/null
+++ b/cores/arduino/new.cpp
@@ -0,0 +1,18 @@
+#include <new.h>
+
+void * operator new(size_t size)
+{
+ return malloc(size);
+}
+
+void operator delete(void * ptr)
+{
+ free(ptr);
+}
+
+int __cxa_guard_acquire(__guard *g) {return !*(char *)(g);};
+void __cxa_guard_release (__guard *g) {*(char *)g = 1;};
+void __cxa_guard_abort (__guard *) {};
+
+void __cxa_pure_virtual(void) {};
+