summaryrefslogtreecommitdiff
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Add some Kconfig dependencies to reduce possibility of bad configurations. ↵Gregory Nutt2015-02-251-0/+1
| | | | Suggested by OrbitalFox
* Update ChangeLogGregory Nutt2015-02-201-0/+4
|
* OS test: Improved error checking for sem_timedwait() from Juha NiskanenGregory Nutt2015-02-201-12/+36
|
* Fix some time value changes; mostly changing greater than 1000000000 to ↵Gregory Nutt2015-02-201-1/+1
| | | | greater than or equal to 1000000000. From Juha Niskanen
* apps/examples/ostest: Sample errno on returns from sem_timedwait(). ↵Gregory Nutt2015-02-191-5/+8
| | | | Otherwise, intervening system calls my change the value of the reported errno. Noted by Juha Niskanen
* Fix typo in Telnet Kconfig. From OrbitalFoxGregory Nutt2015-02-191-1/+1
|
* apps/platform/Makefile: Add a default defintion for DELIM. Apparently it ↵Gregory Nutt2015-02-181-0/+2
| | | | may not be present in certain causes during 'make distclean'. From Michal Ulianko (SourceForge patch #47
* NSH: The default priority of the network initialization thread should be ↵Gregory Nutt2015-02-171-1/+5
| | | | lower. It is CPU intensive and can interfere with other operations
* Some files that now include sys/time.h should no longer include timer.hGregory Nutt2015-02-153-3/+0
|
* Suffer the consequences of moving struct timeval to its correct locationGregory Nutt2015-02-1515-2/+17
|
* Prep for 7.8 releasenuttx-7.8Gregory Nutt2015-02-111-5/+7
|
* Fix some warnings in audio code causing by fixing the prototypes of ↵Gregory Nutt2015-02-091-2/+3
| | | | mq_send() and mq_receive()
* Update ChangeLogGregory Nutt2015-02-061-0/+5
|
* apps/netutils/netlib: Add utilities to convert to/from prefix lengths ↵Gregory Nutt2015-02-065-8/+333
| | | | from/to 128-bit network masks. Modify the NSH IPv6 ifconfig command to show the network mask in a more standard, human readable way.
* Fix errors in range of IPv6 netmask range in Kconfig filesGregory Nutt2015-02-053-26/+26
|
* ICMPv6: Some initial bugfix from first tests of the ICMPv6 ↵Gregory Nutt2015-02-033-3/+13
| | | | auto-configuration logic. so far so good but a lot more testing is needed
* ICMPv6: This completes coding of the ICMPv6 auto-configuration feature. It ↵Gregory Nutt2015-02-036-29/+35
| | | | is not yet functional
* Add an ioctal() that can be used to perform ICMPv6 auto-configurationGregory Nutt2015-02-031-17/+14
|
* Update ChangeLogGregory Nutt2015-02-031-1/+8
|
* apps/builtin: better fix for building with parallel makeGregory Nutt2015-02-032-12/+24
| | | | | | | | | | | | | | | | | | | | Build-server sometimes fails 'make -j24' with: In file included from builtin_list.c:62:0: builtin_list.h:1:46: error: 'ts_engine_main' undeclared here (not in a function) { "ts_engine", SCHED_PRIORITY_DEFAULT, 2048, ts_engine_main }, or sometimes silently succeeds but generates builds that contain a random subset of configured NuttX applications. There are two root causes for this: 1) Recipes for building builtin_list.h and builtin_proto.h are not linearizable. 2) Nothing ensures that 'make context' is run first for apps/builtin This patch addresses both issues. Signed-off-by: Juha Niskanen <juha.niskanen@haltian.com>
* Add netlib and application hooks for ICMPv6 auto-configuration (still incompleteGregory Nutt2015-02-039-22/+164
|
* NSH: Fix error in conditional compilation in PS command. From Macs NGregory Nutt2015-02-031-1/+1
|
* Removed forced enable of CONFIG_READLINE_ECHO in apps/system/readline/readline.hGregory Nutt2015-02-011-7/+1
|
* drivers/ramdisk.c and include/nuttx/fs/ramdisk.h: Add logic to dispose of ↵Gregory Nutt2015-02-012-3/+4
| | | | the drvier and RAM buffer when the RAM disk has been unlinked and all open references to the RAM disk have been closed. Add new parameters to romdisk() to specify what should be done with the RAM/ROM buffer -- Should it be freed or not? Changed all calls to ramdisk() to use these new parameters.
* Unix domain/FIFOs: Fix a race condition between FIFO buffer operations and ↵Gregory Nutt2015-01-302-9/+9
| | | | the opening and closing of FIFOs which necessary when the FIFOs are used to support Unix domain, datagram sockets. The default policy is the deallocate FIFO buffering when the last client closes the pipe. When when used for datagram communicatinos, packets left in the FIFO will be lost. Some like UDP read-ahead is needed: The buffered data in the FIFO needs to be retained until the reader gets a chance to re-open the FIFO. Added an ioctl (PIPEIOC_POLICY) to control the buffer policy. Default (0) is the legacy behavior; Unix domain datagram logic sets the alternative policy so that the packet data persists after the FIFO is closed.
* apps/ustream and udgram: Change default FIFO path to /dev/fifoGregory Nutt2015-01-303-4/+4
|
* Cosmetic updates to commentsGregory Nutt2015-01-291-2/+2
|
* Unix domain: Various fixes to get apps/examplex/udgram workingGregory Nutt2015-01-291-6/+0
|
* Reorder statements: printf clobbers errno valueGregory Nutt2015-01-291-1/+2
|
* Elminate some warnings with TCP and UDP are disabledGregory Nutt2015-01-291-1/+3
|
* apps/examples/udgram: Add option to configure program name and task propertiesGregory Nutt2015-01-292-8/+75
|
* Minor fixes after initial tests with apps/examples/udgramGregory Nutt2015-01-281-17/+7
|
* apps/examples/udgram: Improve some size tests and improve error reportingGregory Nutt2015-01-281-3/+16
|
* Update ChangeLogGregory Nutt2015-01-281-1/+3
|
* apps/examples/udgram: Add a simple test of Unix domain datagram socketsGregory Nutt2015-01-2811-5/+643
|
* Unix domain: More fixes. With these changes, apps/examples/ustream worksGregory Nutt2015-01-282-10/+5
|
* Unix domain: A few fixes from early integrationGregory Nutt2015-01-271-1/+2
|
* Unix domain: With these changes I can build a system with no link layer ↵Gregory Nutt2015-01-271-0/+16
| | | | enabled, only Unix domain sockets
* apps/examples/ustream: Fix error in MakefileGregory Nutt2015-01-271-1/+1
|
* Various fixes to get Unix domain sockets to build on the simulator without ↵Gregory Nutt2015-01-271-1/+1
| | | | Ethernet
* Update ChangeLogsGregory Nutt2015-01-271-0/+3
|
* Add a simple test of the Unix domain socketsGregory Nutt2015-01-2710-2/+683
|
* Update ChangeLogsGregory Nutt2015-01-261-0/+3
|
* Add math library defines for nan functions. From Brennan Ashton.Gregory Nutt2015-01-261-6/+0
|
* Add math library support for trunc functions. From Brennan Ashton.Gregory Nutt2015-01-261-33/+0
|
* Add math library support for copysign. From Brennan AshtonGregory Nutt2015-01-261-10/+0
|
* Prep for NuttX-7.7 releasenuttx-7.7Gregory Nutt2015-01-261-3/+5
|
* NSH: A few minor improvements/corrections to the network status presentationGregory Nutt2015-01-241-4/+4
|
* Fix another error in conditional compilation; plus some additional cosmetic ↵Gregory Nutt2015-01-241-1/+1
| | | | changes
* Correct a typo in conditional compilationGregory Nutt2015-01-241-1/+1
|