You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/03/28 15:21:57 UTC

[incubator-nuttx-apps] branch master updated (3ba8516 -> 4ac7744)

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git.


    from 3ba8516  system/ramtest: Change the default of stack size to DEFAULT_TASK_STACKSIZE
     new cf30257  examples/udpblaster: Avoid conflicts with host OS definitions
     new 4ac7744  Appease nxstyle complaints

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 examples/udpblaster/udpblaster.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)


[incubator-nuttx-apps] 02/02: Appease nxstyle complaints

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit 4ac7744c2ed579c4726c1216a695efe714f3b320
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Sat Mar 28 23:47:18 2020 +0900

    Appease nxstyle complaints
---
 examples/udpblaster/udpblaster.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/udpblaster/udpblaster.h b/examples/udpblaster/udpblaster.h
index 4b60253..6a4568f 100644
--- a/examples/udpblaster/udpblaster.h
+++ b/examples/udpblaster/udpblaster.h
@@ -49,14 +49,14 @@
  ****************************************************************************/
 
 #ifdef UDPBLASTER_HOST
-   /* HTONS/L macros are unique to uIP */
+/* HTONS/L macros are unique to uIP */
 
 #  undef HTONS
 #  undef HTONL
 #  define HTONS(a)       htons(a)
 #  define HTONL(a)       htonl(a)
 
-   /* Have SO_LINGER */
+/* Have SO_LINGER */
 
 #  define UDPBLASTER_HAVE_SOLINGER 1
 


[incubator-nuttx-apps] 01/02: examples/udpblaster: Avoid conflicts with host OS definitions

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit cf30257f1c87b13e95711db48c0cc2c905df0f01
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Sat Mar 28 22:25:32 2020 +0900

    examples/udpblaster: Avoid conflicts with host OS definitions
---
 examples/udpblaster/udpblaster.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/examples/udpblaster/udpblaster.h b/examples/udpblaster/udpblaster.h
index 11eddd7..4b60253 100644
--- a/examples/udpblaster/udpblaster.h
+++ b/examples/udpblaster/udpblaster.h
@@ -51,6 +51,8 @@
 #ifdef UDPBLASTER_HOST
    /* HTONS/L macros are unique to uIP */
 
+#  undef HTONS
+#  undef HTONL
 #  define HTONS(a)       htons(a)
 #  define HTONL(a)       htonl(a)