aboutsummaryrefslogtreecommitdiff
path: root/py/gc.h
AgeCommit message (Expand)Author
2021-02-05py/gc: Change include of stdint.h to stddef.h.Damien George
2021-02-04py/gc: Don't include mpconfig.h and misc.h in gc.h.Xiang Xiao
2018-12-20py/gc: Adjust gc_alloc() signature to be able to accept multiple flags.Paul Sokolovsky
2018-06-12py/gc: Add gc_sweep_all() function to run all remaining finalisers.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2016-07-01py/gc: Calculate (and report) maximum contiguous free block size.Paul Sokolovsky
2015-11-29py/gc: Move away from using mp_uint_t, instead use uintptr_t and size_t.Damien George
2015-11-07py: Clear finalizer flag when calling gc_free.Dave Hylands
2015-07-14py: Improve allocation policy of qstr data.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-10-31py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George
2014-10-24py: Improve memory usage debugging; better GC AT dumping.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-30Try not to cause a MemoryError when raising an exception during nterrupt hand...Dave Hylands
2014-05-03Add license header to (almost) all files.Damien George
2014-04-08py: Improve GC locking/unlocking, and make it part of the API.Damien George
2014-04-05Improve GC finalisation code; add option to disable it.Damien George
2014-04-03Implement delmux
2014-02-26GC: Fix printf formats for debugging; add gc_dump_alloc_table.Damien George
2014-02-11Add prototype for gc_dump_info().Paul Sokolovsky
2013-10-23Fix func decls with no arguments: () -> (void).Damien
2013-10-22Add gc_free function to force a block to be freed.Damien
2013-10-22Clear ATBs on gc_init; better gc_info.Damien
2013-10-21Add mark-sweep garbage collector.Damien