diff options
author | Damien George <damien.p.george@gmail.com> | 2016-08-02 01:12:45 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-08-02 01:12:45 +1000 |
commit | 8766bc02dcecc1176324b0b5e99aaf651ebe975b (patch) | |
tree | 263f43593346688a5a410dfaed5e4d7ab0613f60 | |
parent | b4564841b687051425924228acedcd6377ad1acf (diff) | |
download | micropython-8766bc02dcecc1176324b0b5e99aaf651ebe975b.tar.gz micropython-8766bc02dcecc1176324b0b5e99aaf651ebe975b.zip |
cc3200, teensy: Remove broken malloc/free/realloc macro helpers.
These macros are broken and are anyway unused on these two ports. If they
are ever needed in the future then their implementation can be taken from
either stmhal (working macros in mpconfigport.h) or esp8266 (functions).
-rw-r--r-- | cc3200/mpconfigport.h | 8 | ||||
-rw-r--r-- | teensy/mpconfigport.h | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/cc3200/mpconfigport.h b/cc3200/mpconfigport.h index fbf227b86e..331db8100e 100644 --- a/cc3200/mpconfigport.h +++ b/cc3200/mpconfigport.h @@ -198,14 +198,6 @@ typedef long mp_off_t; // disabling/enabling and sleep mode enter/exit #include "cc3200_asm.h" -// There is no classical C heap in bare-metal ports, only Python -// garbage-collected heap. For completeness, emulate C heap via -// GC heap. Note that MicroPython core never uses malloc() and friends, -// so these defines are mostly to help extension module writers. -#define malloc gc_alloc -#define free gc_free -#define realloc gc_realloc - // We need to provide a declaration/definition of alloca() #include <alloca.h> diff --git a/teensy/mpconfigport.h b/teensy/mpconfigport.h index 867c4e6527..05c040d415 100644 --- a/teensy/mpconfigport.h +++ b/teensy/mpconfigport.h @@ -100,14 +100,6 @@ __attribute__(( always_inline )) static inline mp_uint_t disable_irq(void) { #define MICROPY_BEGIN_ATOMIC_SECTION() disable_irq() #define MICROPY_END_ATOMIC_SECTION(state) enable_irq(state) -// There is no classical C heap in bare-metal ports, only Python -// garbage-collected heap. For completeness, emulate C heap via -// GC heap. Note that MicroPython core never uses malloc() and friends, -// so these defines are mostly to help extension module writers. -#define malloc gc_alloc -#define free gc_free -#define realloc gc_realloc - // We need to provide a declaration/definition of alloca() #include <alloca.h> |