summaryrefslogtreecommitdiff
path: root/nuttx/libc
Commit message (Expand)AuthorAgeFilesLines
* Can't use formal parameter name 'template' in stdlib.h. Causes C++ compilati...Gregory Nutt2014-11-062-16/+16
* Add tmpnam() and tempnam()Gregory Nutt2014-11-052-0/+200
* Add tmpnam() and tempnam()Gregory Nutt2014-11-052-0/+25
* Add mktemp() and mkstemp()Gregory Nutt2014-11-053-0/+382
* Add optional timestamp to syslog output. From pn_bouteville@yahoo.frGregory Nutt2014-11-011-10/+55
* SAM3/4: Fix error serial TERMIOS ioctl handlingGregory Nutt2014-10-301-0/+1
* Add isatty() function. From Alan Carvalho de AssisGregory Nutt2014-10-272-2/+73
* Add description of work queues to the porting guide. Update commentsGregory Nutt2014-10-141-2/+2
* Fix error in protected build, user-mode work queueGregory Nutt2014-10-121-13/+9
* Fix some compiler errors in user-work queue configuration that crept in the l...Gregory Nutt2014-10-114-6/+3
* Rename CONFIG_SCHED_USRWORK to CONFIG_LIB_USRWORKGregory Nutt2014-10-118-25/+25
* Decouple the user-space work queue from the kernel space work queuesGregory Nutt2014-10-118-185/+15
* Make building of low-priority work queue independent of also building the hig...Gregory Nutt2014-10-111-1/+0
* Add Kconfig support to select the number of low-priority worker threadGregory Nutt2014-10-101-0/+15
* Add support for multiple low-priority worker threadsGregory Nutt2014-10-105-18/+28
* User-mode work queue logic should not disable interruptsGregory Nutt2014-10-109-316/+513
* Add support for delays of different durations in work queue processingGregory Nutt2014-10-105-32/+49
* Minor changes to work queue timing logicGregory Nutt2014-10-102-6/+55
* Modularize starting of worker threads to better isolate individual initializa...Gregory Nutt2014-10-103-118/+49
* Decoupling work queue data structures. This is part of the preparation to su...Gregory Nutt2014-10-106-43/+194
* Repartition work queue code. Move kernel-specific parts from libc/wqueue to ...Gregory Nutt2014-10-103-127/+124
* libc/aio/aio.h is empty, but add some protection anyway in case it is ever us...Gregory Nutt2014-10-091-0/+3
* Update comments and function headersGregory Nutt2014-10-093-1/+64
* Move syslog back to libc/syslog from fs/syslogGregory Nutt2014-10-097-0/+656
* Backing out some logic: Remove syslog functions from syscallsGregory Nutt2014-10-091-0/+5
* Passing va_list in syscall does not work. Temporarily moved syslog and lowsy...Gregory Nutt2014-10-085-252/+0
* Add syslog system callsGregory Nutt2014-10-081-1/+0
* Implement setlogmask(); move some syslog logic from libc/syslog to fs/syslogGregory Nutt2014-10-088-409/+25
* Move syslog logic from libc/misc and libc/stdio to libc/syslogGregory Nutt2014-10-0811-79/+234
* Misc changes to get a clean build after all of the syslog changes. There are...Gregory Nutt2014-10-082-2/+2
* make standard syslog and vsyslog POSIX compliant (also modify non-standard sy...Gregory Nutt2014-10-086-42/+27
* Update some Kconfig comments; Add a upper limit on the lower priority worker ...Gregory Nutt2014-10-071-7/+70
* Add support for priority inheritance on the low priority worker queueGregory Nutt2014-10-071-2/+2
* Add AIO interfaces to libc.csvGregory Nutt2014-10-061-0/+4
* Fix compile problems with debug onGregory Nutt2014-10-062-2/+2
* Fix a typoGregory Nutt2014-10-061-1/+1
* Rename CONFIG_LIBC_AIO to CONFIG_FS_AIO since it is now an OS propertyGregory Nutt2014-10-055-9/+9
* Move all file operations from libc/aio to fs/aio. These will need to be kern...Gregory Nutt2014-10-058-1170/+1
* First round of changes fo AIO integrationGregory Nutt2014-10-058-31/+42
* Most paranoid changes to assure the state of thingsGregory Nutt2014-10-054-1/+3
* Initiail implementation of lio_listio() and rethinking of signal logicGregory Nutt2014-10-055-63/+744
* Initial implementation of aio_fsync()Gregory Nutt2014-10-057-5/+11
* Iniial implementatin of aio_cancel()Gregory Nutt2014-10-053-5/+172
* Initial implementation of aio_suspend()Gregory Nutt2014-10-052-2/+177
* Move AIO signal logic to a common location in aio_signal.c. Also fix several...Gregory Nutt2014-10-051-0/+124
* Move AIO signal logic to a common location in aio_signal.c. Also fix several...Gregory Nutt2014-10-054-26/+25
* Add initial implementatin of aio_return() and aio_error()Gregory Nutt2014-10-045-5/+237
* Update TODO list and comments in aio filesGregory Nutt2014-10-042-15/+49
* Initial implementation of aio_write()Gregory Nutt2014-10-045-5/+304
* Fleshes out aio_read implementationGregory Nutt2014-10-041-1/+50