aboutsummaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2016-07-31unix/Makefile: And note why btree module is disabled for coverage build.Paul Sokolovsky
2016-07-30py/mpconfig.h: Add MICROPY_STREAMS_POSIX_API setting.Paul Sokolovsky
2016-07-28unix/file: Use generic stream flush() method.Paul Sokolovsky
2016-07-27unix/file: fdfile_ioctl(): Fix argument to check_fd_is_open().Paul Sokolovsky
2016-07-27unix/file: ioctl(): Check that file is open before operations.Paul Sokolovsky
2016-07-27unix/file: Implement MP_STREAM_FLUSH ioctl.Paul Sokolovsky
2016-07-26unix/mpconfigport.h: Include stdio.h by default.Paul Sokolovsky
2016-07-22unix: Enable MICROPY_PY_STR_BYTES_CMP_WARN.Paul Sokolovsky
2016-07-21unix: Disable MICROPY_GC_ALLOC_THRESHOLD for minimal build.Paul Sokolovsky
2016-07-16unix: Cache libaxtls.a in local build dir.Paul Sokolovsky
2016-07-13extmod/modussl_axtls: Further changes to allow alternative SSL modules.Paul Sokolovsky
2016-07-11unix/mpthreadport: Adjust minimum thread stack, and stack limit check.Damien George
2016-07-09unix: Disable the GIL to improve performance of non-thread code.Damien George
2016-07-09unix/main: When preparing sys.path, allocate exact strings on uPy heap.Paul Sokolovsky
2016-07-08unix/main: Improve help for -X options a bit.Paul Sokolovsky
2016-07-08unix/main: Error out on unknown value of suffix in -X heapsize= option.Paul Sokolovsky
2016-07-03unix/mpconfigport_minimal.h: Allow to print a string within 1KB of heap.Paul Sokolovsky
2016-07-03unix/Makefile: Make "minimal" build be minimal again.Paul Sokolovsky
2016-07-02unix: Enable btree module.Paul Sokolovsky
2016-06-28py/modthread: Allow to properly set the stack limit of a thread.Damien George
2016-06-28unix/modtime: Release the GIL when sleeping.Damien George
2016-06-28unix/mpthreadport: Suppress compiler warning about unused arguments.Damien George
2016-06-28unix/gccollect: Provide declaration of exported function.Damien George
2016-06-28unix/mpthreadport: Use SA_SIGINFO for GC signal handler.Damien George
2016-06-28unix: Implement garbage collection with threading.Damien George
2016-06-28unix/file: If write syscall returns because of EINTR then try again.Damien George
2016-06-28py/modthread: Implement lock object, for creating a mutex.Damien George
2016-06-28py/modthread: Add stack_size() function.Damien George
2016-06-28unix: Add basic thread support using pthreads.Damien George
2016-06-28py: Add MP_STATE_THREAD to hold state specific to a given thread.Damien George
2016-06-27unix: Fix Makefile to handle gc-sections linker flags on Mac OS.Martin Müller
2016-06-19unix/modmachine: Enable time_pulse_us() function.Paul Sokolovsky
2016-06-18unix/modmachine: Include PinBase class.Paul Sokolovsky
2016-06-18all: Rename mp_obj_type_t::stream_p to protocol.Paul Sokolovsky
2016-06-18unix: Disable FatFs VFS for normal build, keep enabled for coverage.Paul Sokolovsky
2016-06-18unix/alloc: Make coverage build and its overzealous warnings happy.Paul Sokolovsky
2016-06-18unix/alloc: Add option to use uPy's alloc-exec implementation even for libffi.Paul Sokolovsky
2016-06-18unix/Makefile: libffi: Build with -Os.Paul Sokolovsky
2016-06-17unix: Move "utime" module config to C level instead of make level.Paul Sokolovsky
2016-06-17unix: Time to build with --gc-sections.Paul Sokolovsky
2016-06-16unix: Deprecate support for GNU Readline (MICROPY_USE_READLINE=2).Paul Sokolovsky
2016-06-16unix/mpconfigport_minimal.h: Clearly mark where user-define config ends.Paul Sokolovsky
2016-06-16unix: Unbreak "minimal" target by disabling FatFs.Paul Sokolovsky
2016-06-15py/mpconfig.h: MP_NOINLINE is universally useful, move from unix port.Paul Sokolovsky
2016-05-31extmod/vfs_fat.c: Add vfs.stat().Robert HH
2016-05-28unix/Makefile: "make axtls": Automatically fetch submodules if missing.Paul Sokolovsky
2016-05-28unix/mpconfigport.mk: Document MICROPY_STANDALONE make-level option.Paul Sokolovsky
2016-05-26unix: Enable "ussl" module.Paul Sokolovsky
2016-05-26unix/Makefile: nanbox build is not compatible with modussl, disable.Paul Sokolovsky
2016-05-23unix: Support frozen packages.Damien George