summaryrefslogtreecommitdiff
path: root/nuttx/libc
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix warning caused by change in mktime prototypeGregory Nutt2014-08-121-8/+9
* Adds support for localtime. From Max NeklyudovGregory Nutt2014-08-126-5/+2684
* Slightly improved nanosecond calculationGregory Nutt2014-08-101-2/+4
* SAMA5: Fix bugs in timer/counter interrupts and one-shot timerGregory Nutt2014-08-101-2/+2
* WM8904: Don't use MSEC2TICK in timeout calculationGregory Nutt2014-08-081-1/+1
* Remove CONFIG_DISABLE_CLOCKGregory Nutt2014-08-071-5/+1
* Audio: Change how the end of the audio stream is detected by the leaf audio c...Gregory Nutt2014-07-311-10/+12
* Cosmetic changes, mostly to commentsGregory Nutt2014-07-291-2/+2
* Lpc17xx Ethernet: Comment out an assertion that is reported to first inapprop...Gregory Nutt2014-07-111-2/+2
* Fix some recurring typos: postion->position, *atino->*ationGregory Nutt2014-07-081-1/+1
* Fix some cloned errors in SAM GPIO interrupt setupGregory Nutt2014-07-071-1/+1
* NET: emoved all includes of uip.h; added includes of ip.h wherever needed. T...Gregory Nutt2014-07-042-0/+4
* Make variable definitions 'static const' when possible to save RAM usage. Fr...Gregory Nutt2014-06-301-5/+5
* Fixes for networking and tiny webserver from MaxGregory Nutt2014-06-291-14/+32
* Change double_t to double in rint. Add rintf and rintl while we are at itGregory Nutt2014-06-285-86/+371
* Various changes associated with symbol tables. Most from Pelle WindestamGregory Nutt2014-06-276-6/+80
* Cosmetic cleanupGregory Nutt2014-06-181-3/+3
* Add seekable standard streamsGregory Nutt2014-06-145-27/+296
* Add support for seekable raw streamsGregory Nutt2014-06-145-32/+279
* Add support for seekable memory streamsGregory Nutt2014-06-147-24/+430
* snprintf(): If size is zero, then snprintf() should return the size of the r...Gregory Nutt2014-05-301-7/+29
* Change all variadic macros to C99 styleGregory Nutt2014-05-221-2/+2
* Nucleo F401RE: Remove PX4 cruft that can in with the portGregory Nutt2014-04-221-12/+1
* More trailing whilespace removalGregory Nutt2014-04-13113-201/+201
* Remove dangling white space at the end of the lineGregory Nutt2014-04-131-2/+2
* Cosmetic changes for coding style; removal of dangling spaces at the end of l...Gregory Nutt2014-04-131-1/+1
* Make sure that there is one space after forGregory Nutt2014-04-124-5/+5
* Make sure that there is one space between if and conditionGregory Nutt2014-04-121-1/+1
* mv ramlog.h and syslog.h to new include/nuttx/syslogGregory Nutt2014-04-101-1/+1
* sscanf: Use stroul() vs strol() for %u format. From kfrolovGregory Nutt2014-04-021-14/+28
* Fix ftell() bug: It was not accounting for data buffered in memory. From Ma...Gregory Nutt2014-03-311-3/+38
* Complete fragmentary support for ferror(). From Macs NGregory Nutt2014-03-315-27/+24
* sscanf(): Was returning the wrong number of conversions in many cases; Also, ...Gregory Nutt2014-03-301-11/+16
* Use get_errno() instead of errno because I may do something different if used...Gregory Nutt2014-03-301-4/+8
* strncpy would fail if n==0Gregory Nutt2014-03-282-22/+24