summaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2015-12-28unix: Implement uos.dupterm(). Conditional on MICROPY_PY_OS_DUPTERM.Paul Sokolovsky
2015-12-23unix/unix_mphal: Raise KeyboardInterrupt straight from signal handler.Paul Sokolovsky
2015-12-22unix: Properly cancel REPL input when Ctrl-C is pressed.Damien George
2015-12-18unix: machine_mem improvementsDave Hylands
2015-12-18ports: Rename "machine" module to "umachine".Paul Sokolovsky
2015-12-18windows: Make keyboard_interrupt_obj available, it's standard feature.Paul Sokolovsky
2015-12-18unix/unix_mphal: Just consistently set sigaction.sa_flags to 0.Paul Sokolovsky
2015-12-17unix/unix_mphal: Properly initialize struct sigaction.Paul Sokolovsky
2015-12-16unix: Change define logic of _DIRENT_HAVE_D_INO to match other macros.Damien George
2015-12-16unix: Add FreeDos targetpohmelie
2015-12-16unix/modos: Fix silly bugs in ilistdir tuple creation.Damien George
2015-12-16unix/modos: Allow to configure use of d_ino using _DIRENT_HAVE_D_INO.Damien George
2015-12-16uos: Add errno() function to get/set errno value.Paul Sokolovsky
2015-12-14unix/modos: Implement ilistdir().Paul Sokolovsky
2015-12-14unix/modtime: Add strftime() function (only single argument is supported).Paul Sokolovsky
2015-12-13unix/moduselect: Make configurable with MICROPY_PY_USELECT.Paul Sokolovsky
2015-12-13unix: Move modmachine into unix directoryDave Hylands
2015-12-12unix: Rename "_os" module to "uos" for consistency with baremetal ports.Paul Sokolovsky
2015-12-11unix/moduselect: Implement "one-shot" flag for poll.poll().Paul Sokolovsky
2015-12-09unix/modtermios: DJGPP appears to have unicode-capable cc_t type.Paul Sokolovsky
2015-12-09unix/modtermios: Provide B57600 and B115200 constants only if defined.Paul Sokolovsky
2015-12-07unix/main: mp_verbose_flag available only if MICROPY_DEBUG_PRINTERS is true.Paul Sokolovsky
2015-12-07py: Add MICROPY_PY_BUILTINS_MIN_MAX, disable for minimal ports.pohmelie
2015-12-05unix/moduselect: register(): Allow to call with duplicate file descriptor.Paul Sokolovsky
2015-12-04unix/main: Check pending exception at the end of code block execution.Paul Sokolovsky
2015-12-03unix/mpconfigport: Typo fix in comment.Paul Sokolovsky
2015-12-02unix/mpconfigport.h: For MICROPY_NO_ALLOCA=1, don't even include alloca.h.Paul Sokolovsky
2015-12-02unix/modtime: sleep(): Return early if KeyboardInterrupt is pendingPaul Sokolovsky
2015-11-30unix/moduselect: Support growing of poll array.Paul Sokolovsky
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-11-29unix/modtime: Unbreak Windows build after changes to check select() result.Paul Sokolovsky
2015-11-29unix/modtime: sleep(): Automatically restart after receiving EINTR.Paul Sokolovsky
2015-11-29unix/moduselect: poll.register(): Reuse freed entries in poll array.Paul Sokolovsky
2015-11-28unix/moduselect: Fix bug in poll.poll() scanning loop.Paul Sokolovsky
2015-11-27unix/unix_mphal: Use size_t instead of mp_uint_t in stdout_tx_strn decls.Damien George
2015-11-26unix/modos: Remove duplicate level of #if MICROPY_PY_OS_STATVFS.Paul Sokolovsky
2015-11-23unix/main: Get rid of perror() which uses stdio.Paul Sokolovsky
2015-11-22unix: Use printf() implementation in terms of mp_printf().Paul Sokolovsky
2015-11-21unix/modsocket: Use snprintf(), as defined by lib/utils/printf.c.Paul Sokolovsky
2015-11-21py/emitglue: Host definition of mp_verbose_flag.Paul Sokolovsky
2015-11-21unix/modsocket: Implement sockaddr() function to decode raw socket address.Paul Sokolovsky
2015-11-20unix/modsocket: Removed dangling references to sockaddr_in_type.Paul Sokolovsky
2015-11-20unix/modffi: Mark 'O' type specifier as implemented.Paul Sokolovsky
2015-11-20unix/moduselect: Initialise variable so can compile in non-debug mode.Damien George
2015-11-17unix: Add "uselect" module, with poll() function.Paul Sokolovsky
2015-11-16unix/input: Switch to POSIX I/O for history reading/writing.Paul Sokolovsky
2015-11-14unix/modos: getenv(): Handle non-existing envvar correctly.Paul Sokolovsky
2015-11-14unix/modos: Add Windows workaround for mkdir().Paul Sokolovsky
2015-11-13unix/modos: Add mkdir().Paul Sokolovsky