index
:
suspect-devices/circuitpython
1.x
2.x
3.x
4.0.x
4.1.x
4.x
5.0.x
5.1.x
5.3.x
6.0.x
6.1.x
6.2.x
audiocore-rawsample-sinewave
azure
azure-pipelines
cross
dm-mixer
dynamic-native-modules
encoding
esp-extra-scripts
fix_typo_spanish
iabdalkader-cc3k-update
jepler-try-ubuntu-20.04
main
master
parse-bytecode
reentrant-gc
stable
travis-clang
travis-esp8266
travis-stackless
travis-testing
type_hints
CircuitPython - a Python implementation for teaching coding with microcontrollers
feurig
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
malloc.c
Age
Commit message (
Expand
)
Author
2021-03-15
run code formatting script
microDev
2021-02-25
A few minor fixes for corner cases
Scott Shawcroft
2020-07-06
Add license to some obvious files.
Diego Elio Pettenò
2018-07-11
WIP: after merge; before testing
Dan Halbert
2018-01-24
Introduce a long lived section of the heap.
Scott Shawcroft
2017-12-20
py/malloc: Remove unneeded code checking m_malloc return value.
Damien George
2017-12-07
py/malloc: Allow to use debug logging if !MICROPY_MALLOC_USES_ALLOCATED_SIZE.
Paul Sokolovsky
2017-12-07
py/malloc: MICROPY_MEM_STATS requires MICROPY_MALLOC_USES_ALLOCATED_SIZE.
Paul Sokolovsky
2017-08-31
py: Make m_malloc_fail() have void return type, since it doesn't return.
Damien George
2017-08-15
py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.
Stefan Naumann
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2016-08-26
py/gc: Add MICROPY_GC_CONSERVATIVE_CLEAR option to always zero memory.
Damien George
2016-02-23
py/malloc: Provide a proper malloc-based implementation of realloc_ext.
Damien George
2015-07-14
py: Improve allocation policy of qstr data.
Damien George
2015-03-03
py: Add MICROPY_MALLOC_USES_ALLOCATED_SIZE to allow simpler malloc API.
Damien George
2015-01-07
py: Put all global state together in state structures.
Damien George
2015-01-01
py: Move to guarded includes, everywhere in py/ core.
Damien George
2014-10-31
py: Make gc.enable/disable just control auto-GC; alloc is still allowed.
Damien George
2014-10-23
py: Clean up edge cases of malloc/realloc/free.
Damien George
2014-09-25
py: For malloc and vstr functions, use size_t exclusively for int type.
Damien George
2014-06-21
py: Include mpconfig.h before all other includes.
Paul Sokolovsky
2014-05-03
Add license header to (almost) all files.
Damien George
2014-04-26
py, gc: Only zero out the extra bytes at the end of the heap chunk.
Damien George
2014-04-25
py, gc: Zero out newly allocated blocks in the GC.
Damien George
2014-04-10
py: Check explicitly for memory allocation failure in parser.
Damien George
2014-04-10
py: Add emergency exception object for when heap allocation fails.
Damien George
2014-04-05
Improve GC finalisation code; add option to disable it.
Damien George
2014-04-05
Merge pull request #425 from iabdalkader/del
Damien George
2014-04-04
py: Add m_malloc_fail function to handle memory allocation error.
Damien George
2014-04-03
Implement del
mux
2014-04-02
py: Fix up so that it can compile without float.
Damien George
2014-03-17
py: Clean up includes.
xbe
2014-02-26
py: Remove name of var arg from macros with var args.
Damien George
2014-02-16
Make DEBUG_printf() a proper function, implementation is port-dependent.
Paul Sokolovsky
2014-02-12
Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.
Paul Sokolovsky
2014-02-11
Generalize malloc-via-gc-heap support, make it available to unix port.
Paul Sokolovsky
2014-02-10
Get rid of calloc().
Paul Sokolovsky
2014-01-30
realloc(): Log original memory ptr too.
Paul Sokolovsky
2014-01-29
stm: Add optional memory debugging output.
Damien George
2014-01-03
Rename default config file to mpconfig.h, and port's to mpconfigport.h.
Paul Sokolovsky
2014-01-03
Make it possible to turn off collecting memory stats (MICROPY_MEM_STATS).
Paul Sokolovsky
2014-01-03
Add new alloc metric: peak_bytes_allocated.
Paul Sokolovsky
2014-01-03
Add new alloc metric: current_bytes_allocated.
Paul Sokolovsky
2014-01-03
m_realloc: Account only allocation size difference in total_bytes_allocated.
Paul Sokolovsky
2013-12-29
Change memory allocation API to require size for free and realloc.
Damien
2013-10-23
Fix func decls with no arguments: () -> (void).
Damien
2013-10-04
Initial commit.
Damien