Skip to content
  1. Oct 15, 2017
  2. Oct 14, 2017
  3. Oct 13, 2017
  4. Oct 12, 2017
  5. Oct 11, 2017
  6. Oct 10, 2017
    • Gregory Nutt's avatar
      examples/ostest: Works around a bug in printf() when cancellation points are... · 73c10a26
      Gregory Nutt authored
      examples/ostest:  Works around a bug in printf() when cancellation points are enabled.  printf() is a cancellation point because it calls write().  This is correct according to OpenGroup.org.  However, printf holds the stdio library semaphore when it is canceled and this leaves the semaphore in a bad state.  No fix for the printf bug yet.
      73c10a26
  7. Oct 08, 2017
  8. Oct 06, 2017
  9. Oct 02, 2017
  10. Sep 27, 2017
  11. Sep 26, 2017
  12. Sep 25, 2017
    • Bruno Herrera's avatar
      Fixes for problems found by Coverity in the apps/ repository: · 3fe720d1
      Bruno Herrera authored
          nshlib/nsh_parse.c: Avoid truncating the strcmp result into a unsigned char variable.
      
          nshlib/nsh_netcmds.c: Check for valid hostip before using it.
      
          nshlib/nsh_ddcmd.c: Fix resouce leak when 'if=' or 'of=' params are repeated in the command line.  For example:
      
             dd if=/dev/null if=/dev/zero of=/dev/null or
             dd if=/dev/zero of=/dev/zero of=/dev/null
      3fe720d1
  13. Sep 24, 2017
  14. Sep 23, 2017
    • Gregory Nutt's avatar
      Update some comments. · c221af2f
      Gregory Nutt authored
      c221af2f
    • Gregory Nutt's avatar
      Squashed commit of the following: · 267521af
      Gregory Nutt authored
          apps/examples/flowc:  Adds the necessary termios controls to enable hardware flow control
      
          apps/examples/flowc:  Add a simple test of serial hardware flow control.  This commit just defines the frame work.  Hardware flow control is not yet enabled.
      267521af
  15. Sep 20, 2017
    • Gregory Nutt's avatar
      Fix a copy-paste error · 27773d57
      Gregory Nutt authored
      27773d57
    • Gregory Nutt's avatar
      Squashed commit of the following: · dc5be379
      Gregory Nutt authored
          apps/netutils/netlib:  netlib_ipv[4|6]adaptor() will now use the new routing table interfaces if they are available:  If the desination IP address does not correspond to the network served by any device, then the address of the router that should get us to the correct sub-net is is determined.  Then the network adaptor that can communicate with the that router has the IP address that will returned.
      
          apps/netutils/netlib:  Add new utilities netlib_ipv[4|6]router() that can be used to determine the IP address of a router that would be used some some destination IP address that is not locally accessible.
      
          apps/netutils/netlib:  Add helpers for reading the routing table:  netlib_read_ipv4route() and netlib_read_ipv6route()
      dc5be379
    • Gregory Nutt's avatar
      netlib_ipv[4|6]adaptor: Add a check to handle the case where the network... · fb804e34
      Gregory Nutt authored
      netlib_ipv[4|6]adaptor: Add a check to handle the case where the network device configuration changed asynchronously and the second IOCTL returns more data than the allocated buffer.
      fb804e34