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
/
gc.h
Age
Commit message (
Expand
)
Author
2019-11-22
* only make objects long lived if they are on the GC heap
David Grimes
2019-06-06
Include display objects in gc.
Dan Halbert
2019-04-08
Reorganize board busses into shared-bindings and shared-module.
Scott Shawcroft
2019-03-12
Enter safe mode when an allocation is attempted on an uninitialized heap.
Scott Shawcroft
2018-07-11
WIP: after merge; before testing
Dan Halbert
2018-06-12
py/gc: Add gc_sweep_all() function to run all remaining finalisers.
Damien George
2018-01-24
Introduce a long lived section of the heap.
Scott Shawcroft
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-18
all: Unify header guard usage.
Alexander Steffen
2016-07-01
py/gc: Calculate (and report) maximum contiguous free block size.
Paul Sokolovsky
2015-11-29
py/gc: Move away from using mp_uint_t, instead use uintptr_t and size_t.
Damien George
2015-11-07
py: Clear finalizer flag when calling gc_free.
Dave Hylands
2015-07-14
py: Improve allocation policy of qstr data.
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-24
py: Improve memory usage debugging; better GC AT dumping.
Damien George
2014-07-03
Rename machine_(u)int_t to mp_(u)int_t.
Damien George
2014-06-30
Try not to cause a MemoryError when raising an exception during nterrupt hand...
Dave Hylands
2014-05-03
Add license header to (almost) all files.
Damien George
2014-04-08
py: Improve GC locking/unlocking, and make it part of the API.
Damien George
2014-04-05
Improve GC finalisation code; add option to disable it.
Damien George
2014-04-03
Implement del
mux
2014-02-26
GC: Fix printf formats for debugging; add gc_dump_alloc_table.
Damien George
2014-02-11
Add prototype for gc_dump_info().
Paul Sokolovsky
2013-10-23
Fix func decls with no arguments: () -> (void).
Damien
2013-10-22
Add gc_free function to force a block to be freed.
Damien
2013-10-22
Clear ATBs on gc_init; better gc_info.
Damien
2013-10-21
Add mark-sweep garbage collector.
Damien