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
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
unix
/
gccollect.c
Age
Commit message (
Expand
)
Author
2016-06-28
unix/gccollect: Provide declaration of exported function.
Damien George
2016-06-28
unix: Implement garbage collection with threading.
Damien George
2016-06-28
py: Add MP_STATE_THREAD to hold state specific to a given thread.
Damien George
2015-11-29
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Damien George
2015-11-08
unix/gccollect: Fallback to setjmp-based register fetching automatically.
Paul Sokolovsky
2015-01-16
unix: Add target to build "minimal" uPy interpreter.
Damien George
2015-01-14
unix, windows: Don't call mp_unix_mark_exec on windows.
Damien George
2015-01-14
py, unix: Trace root pointers with native emitter under unix port.
Damien George
2015-01-12
py: Can compile with -Wmissing-declarations and -Wmissing-prototypes.
Damien George
2015-01-07
py: Put all global state together in state structures.
Damien George
2015-01-01
unix: Prefix includes with py/; remove need for -I../py.
Damien George
2014-12-10
py: Make functions static where appropriate.
Damien George
2014-10-31
py: Make gc.enable/disable just control auto-GC; alloc is still allowed.
Damien George
2014-07-03
Rename machine_(u)int_t to mp_(u)int_t.
Damien George
2014-07-01
stackctrl: Add "mp_" prefix.
Paul Sokolovsky
2014-06-28
unix: Fix mpconfig.h not being included before misc.h
stijn
2014-06-22
gc: Use simple cast instead of union to silence compiler
stijn
2014-06-22
windows: Enable GC and implement bss start and end symbols
stijn
2014-06-22
py: Support arm and thumb ARM ISAs, in addition to thumb2.
Paul Sokolovsky
2014-06-05
unix: Add setjmp-based GC register helper implementation.
Paul Sokolovsky
2014-05-28
unix/gccollect.c: Make Clang workaround apply only to it. Unbreaks gcc builds.
Paul Sokolovsky
2014-05-12
unix: Add asm statements needed to read registers with clang. Code generated ...
Antonin ENFRUN
2014-05-03
Add license header to (almost) all files.
Damien George
2014-04-11
unix: Update comment in gccollect.c
xbe
2014-04-03
Changes to get unix/ port compiling on Cygwin.
Damien George
2014-03-16
unix: Clean up includes.
xbe
2014-03-03
unix: Add GC support for ARM architecture.
Paul Sokolovsky
2014-02-26
GC: Fix printf formats for debugging; add gc_dump_alloc_table.
Damien George
2014-02-11
More GC debugging improvements.
Paul Sokolovsky
2014-02-11
unix: Implement garbage collection support.
Paul Sokolovsky