aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2016-06-28unix/mpthreadport: Use SA_SIGINFO for GC signal handler.Damien George
2016-06-28py/gc: Fix GC+thread bug where ptr gets lost because it's not computed.Damien George
2016-06-28unix: Implement garbage collection with threading.Damien George
2016-06-28py/modthread: Call mp_thread_start/mp_thread_finish around threads.Damien George
2016-06-28py/modthread: Be more careful with root pointers when creating a thread.Damien George
2016-06-28unix/file: If write syscall returns because of EINTR then try again.Damien George
2016-06-28py/gc: Fix 2 cases of concurrent access to ATB and FTB.Damien George
2016-06-28py/modthread: Satisfy unused-args warning.Damien George
2016-06-28tests/thread: Add tests for running GC within a thread, and heap stress.Damien George
2016-06-28py/gc: Make memory manager and garbage collector thread safe.Damien George
2016-06-28py/modthread: Add with-context capabilities to lock object.Damien George
2016-06-28py/modthread: Implement lock object, for creating a mutex.Damien George
2016-06-28py/modthread: Add exit() function.Damien George
2016-06-28py/modthread: Add stack_size() function.Damien George
2016-06-28py/modthread: Properly cast concrete exception pointer to an object.Damien George
2016-06-28unix: Add basic thread support using pthreads.Damien George
2016-06-28py: Add basic _thread module, with ability to start a new thread.Damien George
2016-06-28py: Add MP_STATE_THREAD to hold state specific to a given thread.Damien George
2016-06-28tests/thread: Remove need to sleep to wait for completion in some tests.Damien George
2016-06-28tests: Add 3 more tests for _thread module.Damien George
2016-06-28tests: Add tests for _thread module.Damien George
2016-06-27unix: Fix Makefile to handle gc-sections linker flags on Mac OS.Martin Müller
2016-06-26drivers/display/ssd1306: Add width arg and support 64px wide displays.Radomir Dopieralski
2016-06-26esp8266/main.c: Clear the command line history when (re)booting.Robert HH
2016-06-26docs/library: Fix typo in docs for usocket.listen().Martin Müller
2016-06-25lib/libm: Remove unused definition of "one".Damien George
2016-06-25lib/libm: Format code to pass gcc v6.1.1 warning.Damien George
2016-06-25windows/msvc: Include machine_pinbase.c in build and enable umachine modulestijn
2016-06-24tests/btree1: Add testcase for iterating btree object directly.Paul Sokolovsky
2016-06-23extmod/modbtree: Cleverly implement "for key in btree:" syntax.Paul Sokolovsky
2016-06-21tests/extmod: Add "btree" module test.Paul Sokolovsky
2016-06-20extmod/modbtree: Implement keys(), values(), items() iterators.Paul Sokolovsky
2016-06-19tests: Add a testcase for machine.PinBase class.Paul Sokolovsky
2016-06-19docs/conf.py: Exclude cmath from modindex for wipy.Paul Sokolovsky
2016-06-19extmod/modlwip: Store a chain of incoming pbufs, instead of only one.Paul Sokolovsky
2016-06-19py/objtype: Inherit protocol vtable from base class only if it exists.Paul Sokolovsky
2016-06-19extmod/machine_pinbase: Fix nanbox build.Paul Sokolovsky
2016-06-19unix/modmachine: Enable time_pulse_us() function.Paul Sokolovsky
2016-06-19py/mphal.h: If virtpin API is used, automagically include its header.Paul Sokolovsky
2016-06-19py/objtype: instance: Inherit protocol vtable from a base class.Paul Sokolovsky
2016-06-18unix/modmachine: Include PinBase class.Paul Sokolovsky
2016-06-18extmod/machine_pinbase: Implementation of PinBase class.Paul Sokolovsky
2016-06-18docs/sys: print_exception: Fixes/clarifications.Paul Sokolovsky
2016-06-18docs/select: Add an article.Paul Sokolovsky
2016-06-18all: Rename mp_obj_type_t::stream_p to protocol.Paul Sokolovsky
2016-06-18extmod/modbtree: open(): Support "in-memory" database with filename=None.Paul Sokolovsky
2016-06-18extmod/modbtree: __getitem__() should raise KeyError for non-existing key.Paul Sokolovsky
2016-06-18unix: Disable FatFs VFS for normal build, keep enabled for coverage.Paul Sokolovsky
2016-06-18extmod/modbtree: items(): Implement DESC flag.Paul Sokolovsky
2016-06-18unix/alloc: Make coverage build and its overzealous warnings happy.Paul Sokolovsky