summaryrefslogtreecommitdiff
path: root/nuttx/libc
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add skeleton file for eventual implementation of aio_read()Gregory Nutt2014-10-046-5/+314
* Add empty skeleton file where lio_listio() will eventually be implementedGregory Nutt2014-10-042-1/+287
* Add a build structue to support asynchronous I/OGregory Nutt2014-10-043-2/+49
* Change to lib_dtoa() to fix prescision error from trailing zeroesGregory Nutt2014-09-261-0/+4
* More NxWM build fixesGregory Nutt2014-09-203-3/+3
* First round of changes to get the ELF configuration building againGregory Nutt2014-09-163-5/+5
* Fix some backward conditional compilationGregory Nutt2014-09-152-3/+3
* execv() is a basic system interface. It should not be in libc/ but rather in...Gregory Nutt2014-09-152-308/+0
* execv() is a basic system interface. It should not be in libc/ but rather in...Gregory Nutt2014-09-151-1/+1
* Rename everything associated with the dynamic process stack to ustack to make...Gregory Nutt2014-09-141-1/+1
* Don't build task_create() or task_spawn() interfaces if there is an addres en...Gregory Nutt2014-09-145-5/+19
* Fix one more dependency upon having a symbol tableGregory Nutt2014-09-121-7/+9
* Having a symbol table is an option. There are no symbol tables with CONFIG_B...Gregory Nutt2014-09-122-0/+18
* Cosmetic changesGregory Nutt2014-09-121-3/+4
* Fix a couple more places where the wrong allocator is being usedGregory Nutt2014-09-111-3/+3
* When a privileged thread exits, we have to use the kernel alloctor to free me...Gregory Nutt2014-09-111-12/+17
* Rename some functions and reshuffling some paramtersGregory Nutt2014-09-112-38/+67
* Change commenting style to agree with coding standardGregory Nutt2014-09-087-86/+86
* Correct atan2 implementations from Denis ArnstGregory Nutt2014-09-083-94/+51
* A const storage class to to phthread parameters. From Freddie ChopinGregory Nutt2014-09-084-4/+4
* Fix some conditional compilation in kernel build mode. And, while we are tou...Gregory Nutt2014-09-071-4/+4
* Mostly cosmetic changesGregory Nutt2014-09-041-2/+4
* Remove final traces of the 8015 from the NuttX source treeGregory Nutt2014-09-011-1/+1
* Rename kfree to kmm_free for consistency with other naming conventionsGregory Nutt2014-08-311-3/+3
* Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency wi...Gregory Nutt2014-08-311-2/+2
* Rename kufree to kumm_free for consistency with other namingGregory Nutt2014-08-311-2/+2
* Rename kmemalign to kmm_memalign and krealloc to kmm_realooc for consistency ...Gregory Nutt2014-08-311-3/+3
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate new...Gregory Nutt2014-08-2915-24/+39
* sscanf(): NuttX libc tried to guess how many characters to parse, extracted t...Gregory Nutt2014-08-181-23/+24
* Add support for an ioctl that can be used to notify an application when there...Gregory Nutt2014-08-161-0/+1
* Remove libc/time/tzfile.h; content moved inside of libc/time/lib_localtime.cGregory Nutt2014-08-152-185/+139
* libc/time/lib_localtime.c is much closer to NuttX coding style. libc/time/pri...Gregory Nutt2014-08-152-2317/+2265