summaryrefslogtreecommitdiff
path: root/nuttx/libc/misc
Commit message (Collapse)AuthorAgeFilesLines
* Updated commentsGregory Nutt2014-11-291-4/+16
|
* Update some Documentation and comments associated with the last ioctl changeGregory Nutt2014-11-291-2/+2
|
* Add some commentsGregory Nutt2014-11-291-2/+6
|
* Add support for a variadic ioctl() function. The ioctl() interface is a ↵Gregory Nutt2014-11-292-0/+111
| | | | non-standard, Unix interface. NuttX has always used the older, three-parameter version. Most contemporary systems now, however, use a variadic form of the ioctl() function. Added an option to insert a shim layer to adapt the three-parameter ioctl() to use the variadic interface form. Internally, the ioctl handling is the same three-parameter logic. The only real complexity to the shim is in how the system calls must be handled.
* Move syslog logic from libc/misc and libc/stdio to libc/syslogGregory Nutt2014-10-082-62/+20
|
* make standard syslog and vsyslog POSIX compliant (also modify non-standard ↵Gregory Nutt2014-10-082-31/+16
| | | | syslog functions for compatibility). This will break a lot of things until ALL usage of syslog is updated to use the modified interfaces
* 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 ↵Gregory Nutt2014-09-111-12/+17
| | | | memory; when an unprivileged thread exits, we don't have to do anything... heap memory will be cleaned up when the address environment is torn down
* Rename some functions and reshuffling some paramtersGregory Nutt2014-09-112-38/+67
|
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-291-2/+3
| | | | new CONFIG_BUILD_KERNEL
* Lpc17xx Ethernet: Comment out an assertion that is reported to first ↵Gregory Nutt2014-07-111-2/+2
| | | | inappropriately. From Max
* Change all variadic macros to C99 styleGregory Nutt2014-05-221-2/+2
|
* More trailing whilespace removalGregory Nutt2014-04-134-6/+6
|
* Changes to get PX4 config to build. Also some warning removalGregory Nutt2014-01-141-2/+5
|
* Decoupling NX user interfaces to support NX kernel build (phase 1)Gregory Nutt2013-12-271-2/+0
|
* Pattern matching logic extended by Ken PettitGregory Nutt2013-12-121-5/+68
|
* LM: Don't initialize .data if running in SRAM. Global missing intialize ↵Gregory Nutt2013-12-051-1/+1
| | | | type. SAMA5 NAND: Fix for read nand in smaller chunks
* Clean up some naming: fd vs. fildes vs. filedes and filep vs filpGregory Nutt2013-09-281-3/+1
|
* Optimized sendfile() from Max HoltzbergGregory Nutt2013-09-281-2/+6
|
* Fix all occurrences of "the the" in documentation and commentsGregory Nutt2013-08-272-2/+2
|
* Fix typo/compilation error with USB device DMA memory allocation is enabledGregory Nutt2013-07-121-2/+0
|
* Add CRC16 supportGregory Nutt2013-07-072-1/+139
|
* More SLCD-related fixesGregory Nutt2013-05-262-10/+3
|
* Extentions SCLD test; SCLD CODEC and LCD1602 driver bug fixesGregory Nutt2013-05-262-2/+36
|
* Fix bugs in SLCD test and in SLCD CODECGregory Nutt2013-05-241-24/+16
|
* STM32L-Discovery LCD driver is code compele but untestedGregory Nutt2013-05-231-7/+18
|
* Add logic to encode/decode special SLCD actionsGregory Nutt2013-05-234-2/+577
|
* Reorganize some AT91SAM3U files; Add an NSH kernel build configuration to ↵patacongo2013-03-111-2/+6
| | | | | | the WaveSahhare Open1788 board git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5732 42af7a65-404d-4744-a932-0658087f49c3
* Create sched_ufree and sched_kfree from sched_free; Use user-accessible heap ↵patacongo2013-03-101-1/+4
| | | | | | to allocae stacks git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5725 42af7a65-404d-4744-a932-0658087f49c3
* More changes for a kernel-mode allocator (more to be done)patacongo2013-03-091-3/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5724 42af7a65-404d-4744-a932-0658087f49c3
* Add syslog.h; rename lib_rawprintf() to syslog()patacongo2013-01-282-22/+22
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5578 42af7a65-404d-4744-a932-0658087f49c3
* Move stream data from TCB to task group structure.patacongo2013-01-261-96/+38
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5569 42af7a65-404d-4744-a932-0658087f49c3
* Fix an error handling bug in the fread logicpatacongo2013-01-112-10/+8
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5511 42af7a65-404d-4744-a932-0658087f49c3
* Fix bad conditional in nuttx/libc/misc/Make.defspatacongo2013-01-031-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5474 42af7a65-404d-4744-a932-0658087f49c3
* Add support for key release eventspatacongo2012-12-272-63/+137
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5464 42af7a65-404d-4744-a932-0658087f49c3
* Verified USB HID KBD driver encoding of special characters; ↵patacongo2012-12-261-1/+7
| | | | | | apps/examples/hidkbd now decodes encoded keyboar characters. git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5463 42af7a65-404d-4744-a932-0658087f49c3
* Implement encoding the usbhost HID keyboard driver; configre ↵patacongo2012-12-262-4/+9
| | | | | | olimex-lpc1766stk HID keyboard configuration to use the kconfig-frontends tool git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5461 42af7a65-404d-4744-a932-0658087f49c3
* Add logic to serialize and marshal out-of-band keyboard commandspatacongo2012-12-253-1/+340
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5460 42af7a65-404d-4744-a932-0658087f49c3
* OK.. I think the directory has been recovered and renamedpatacongo2012-11-109-9/+9
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5331 42af7a65-404d-4744-a932-0658087f49c3
* Still trying to recover directory contentspatacongo2012-11-109-0/+1373
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5330 42af7a65-404d-4744-a932-0658087f49c3