[GitHub] [incubator-nuttx] xiaoxiang781216 commented on issue #188: Fixed USB RNDIS not to send over MTU packet

2020-01-30 Thread GitBox
xiaoxiang781216 commented on issue #188: Fixed USB RNDIS not to send over MTU packet URL: https://github.com/apache/incubator-nuttx/pull/188#issuecomment-580610226 But GUARD_SIZE is global option, how to handle the case that both ethernet(require guard bytes) driver and rndis driver enable

[GitHub] [incubator-nuttx] patacongo closed pull request #188: Fixed USB RNDIS not to send over MTU packet

2020-01-30 Thread GitBox
patacongo closed pull request #188: Fixed USB RNDIS not to send over MTU packet URL: https://github.com/apache/incubator-nuttx/pull/188 This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [incubator-nuttx] patacongo commented on issue #188: Fixed USB RNDIS not to send over MTU packet

2020-01-30 Thread GitBox
patacongo commented on issue #188: Fixed USB RNDIS not to send over MTU packet URL: https://github.com/apache/incubator-nuttx/pull/188#issuecomment-580601132 No, that is the way that the packet size is configured for all network drivers. We will not make an exception here. The GUARD_SIZE i

[GitHub] [incubator-nuttx] WaterBirdWayOrigin opened a new pull request #188: Fixed USB RNDIS not to send over MTU packet

2020-01-30 Thread GitBox
WaterBirdWayOrigin opened a new pull request #188: Fixed USB RNDIS not to send over MTU packet URL: https://github.com/apache/incubator-nuttx/pull/188 USB RNDIS sent the packet which has CONFIG_ETH_PKTSIZE + CONFIG_NET_GUARDSIZE. The maximum size of Ethernet packet should be CONFIG_E

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580564661 sched_lock() is made available to applications via a syscall. That was a very bad decision that I made long ago.

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580563032 "But is it reasonable to follow Linux practice if POSIX doesn't define something but very useful(don't like up_cup_

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580561988 Yes, it's better to extend syslog and let smp test call syslog instead of printf. But is it reasonable to

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580560510 "Yes, hello isn't a good place but how about apps/testing/smp/smp_main.c? It's reasonable to query the current cpu

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580557678 In addition to being just a horrible thing to the to the OS, the interface is useless. I mentioned this above. It

[GitHub] [incubator-nuttx-apps] patacongo edited a comment on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo edited a comment on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580556832 I am very opposed to all of these changes. The interfaces are useless, Hello, World! must not be modified,

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580556894 Yes, hello isn't a good place but how about apps/testing/smp/smp_main.c? It's reasonable to query the current

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580556832 I am very opposed to all of these changes. The interfaces are useless, Hello, World! must not be modified, the int

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580556356 I want apps/examples/hello/ to remain a pure "Hello, World!" example. It is wrong to mix test data into the pure "

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580553764 Also, I do not think hello, world! is an appropriate place for that kind of stuff. Please do not modify it.

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580552876 I don't think sched_getcpu() is a good idea. It is a useless application interface and is not POSIX. I will declin

[incubator-nuttx] 01/04: arch/mips/src/Common and mips32: Access g_current_regs through the macro CURRENT_REGS.

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 300fe5e35487c3f80d98f716e6c4ab696c80bc64 Author: Ouss4 AuthorDate: Sun Jan 19 23:53:07 2020 + arch/mips

[incubator-nuttx] 04/04: Run tools/nxstyle against all files modified by PR187 and correct complaints

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 960c26491c0692f5ac35974517524704fae33524 Author: Gregory Nutt AuthorDate: Thu Jan 30 19:00:12 2020 -0600 Ru

[incubator-nuttx] 02/04: arch/mips/src/pic32mz/pic32mz-head.S: Add showprogress macro

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 701b6897d7323fa1f659ace8be4e344d39599d02 Author: Ouss4 AuthorDate: Fri Jan 24 15:02:41 2020 + arch/mips

[incubator-nuttx] 03/04: arch/mips/pic32mz/pic32mz-lowconsole.c: Wait for transfer complete.

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 73bdb433bbdfde7962732e657219281f2a780221 Author: Ouss4 AuthorDate: Fri Jan 31 00:52:38 2020 + arch/mips

[incubator-nuttx] branch master updated (1600980 -> 960c264)

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 1600980 fix gran_alloc() miss allocation in mm_granalloc.c. new 300fe5e arch/mips/src/Common and mips3

[GitHub] [incubator-nuttx] patacongo merged pull request #187: arch/mips/src/pic32mz-head.S: Show progress during start up.

2020-01-30 Thread GitBox
patacongo merged pull request #187: arch/mips/src/pic32mz-head.S: Show progress during start up. URL: https://github.com/apache/incubator-nuttx/pull/187 This is an automated message from the Apache Git Service. To respond to

[incubator-nuttx] branch pr187 updated (1600980 -> fb1b7b0)

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch pr187 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 1600980 fix gran_alloc() miss allocation in mm_granalloc.c. new b6c8804 Access g_current_regs through t

[incubator-nuttx] 01/03: Access g_current_regs through the macro CURRENT_REGS.

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch pr187 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit b6c88040e8e0d0bbad8ab4f8df5262f6a298fcfb Author: Ouss4 AuthorDate: Sun Jan 19 23:53:07 2020 + Access g_c

[incubator-nuttx] 02/03: pic32mz-head.S: Add showprogress macro

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch pr187 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit a2cf03fba9309cfa347dee4de381c6f30a8ab8fb Author: Ouss4 AuthorDate: Fri Jan 24 15:02:41 2020 + pic32mz-he

[incubator-nuttx] 03/03: arch/mips/pic32mz/pic32mz-lowconsole.c: Wait for the transfert to complet when using up_lowputc.

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch pr187 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit fb1b7b0dc7dfe50f7d21c1bdb0463be86c1b11e3 Author: Ouss4 AuthorDate: Fri Jan 31 00:52:38 2020 + arch/mips/

[incubator-nuttx] branch pr187 created (now 1600980)

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch pr187 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. at 1600980 fix gran_alloc() miss allocation in mm_granalloc.c. No new revisions were added by this update.

[GitHub] [incubator-nuttx] Ouss4 opened a new pull request #187: arch/mips/src/pic32mz-head.S: Show progress during start up.

2020-01-30 Thread GitBox
Ouss4 opened a new pull request #187: arch/mips/src/pic32mz-head.S: Show progress during start up. URL: https://github.com/apache/incubator-nuttx/pull/187 This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-nuttx-apps] masayuki2009 commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
masayuki2009 commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580517143 Thanks for all of the comments above. I'll consider to implement sched_getcpu() API. --

[GitHub] [incubator-nuttx-apps] Ouss4 merged pull request #41: apps/examples/userfs/userfs_main.c: Fix warning

2020-01-30 Thread GitBox
Ouss4 merged pull request #41: apps/examples/userfs/userfs_main.c: Fix warning URL: https://github.com/apache/incubator-nuttx-apps/pull/41 This is an automated message from the Apache Git Service. To respond to the message,

[incubator-nuttx-apps] branch master updated: apps/examples/userfs/userfs_main.c: Fix warning (#41)

2020-01-30 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 8c9663b apps/examples/userfs

[GitHub] [incubator-nuttx-apps] patacongo opened a new pull request #41: apps/examples/userfs/userfs_main.c: Fix warning

2020-01-30 Thread GitBox
patacongo opened a new pull request #41: apps/examples/userfs/userfs_main.c: Fix warning URL: https://github.com/apache/incubator-nuttx-apps/pull/41 Fixes warning: CC: userfs_main.c userfs_main.c:182:3: warning: initialization from incompatible pointer type [-Wincompati

[GitHub] [incubator-nuttx-apps] Ouss4 merged pull request #40: apps/testing/mm: Make stacksize configurable

2020-01-30 Thread GitBox
Ouss4 merged pull request #40: apps/testing/mm: Make stacksize configurable URL: https://github.com/apache/incubator-nuttx-apps/pull/40 This is an automated message from the Apache Git Service. To respond to the message, ple

[incubator-nuttx-apps] branch master updated: apps/testing/mm: Make stacksize configurable (#40)

2020-01-30 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 7a8790f apps/testing/mm: Ma

[GitHub] [incubator-nuttx-apps] patacongo opened a new pull request #40: apps/testing/mm: Make stacksize configurable

2020-01-30 Thread GitBox
patacongo opened a new pull request #40: apps/testing/mm: Make stacksize configurable URL: https://github.com/apache/incubator-nuttx-apps/pull/40 Makes stacksize as well as program name and priority configurable. The defaults are the same as the previous hardcoded values. The defa

[incubator-nuttx-apps] branch master updated: apps/testing/mm: Move from apps/examples/mm (#39)

2020-01-30 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new ba63770 apps/testing/mm: Mo

[GitHub] [incubator-nuttx-apps] Ouss4 merged pull request #39: apps/testing/mm: Move from apps/examples/mm

2020-01-30 Thread GitBox
Ouss4 merged pull request #39: apps/testing/mm: Move from apps/examples/mm URL: https://github.com/apache/incubator-nuttx-apps/pull/39 This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [incubator-nuttx-apps] patacongo opened a new pull request #39: apps/testing/mm: Move from apps/examples/mm

2020-01-30 Thread GitBox
patacongo opened a new pull request #39: apps/testing/mm: Move from apps/examples/mm URL: https://github.com/apache/incubator-nuttx-apps/pull/39 examples/mm was not an appropriate example for anyone. It is really a test and, as such, belongs under apps/testing/mm. --

[incubator-nuttx] branch master updated (b80fb6b -> 1600980)

2020-01-30 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from b80fb6b net/utils: Fix the wrong mask calculation in net_ipv6_pref2mask add 1600980 fix gran_alloc

[GitHub] [incubator-nuttx] acassis merged pull request #186: fix gran_alloc() miss allocation in mm_granalloc.c.

2020-01-30 Thread GitBox
acassis merged pull request #186: fix gran_alloc() miss allocation in mm_granalloc.c. URL: https://github.com/apache/incubator-nuttx/pull/186 This is an automated message from the Apache Git Service. To respond to the messag

[incubator-nuttx] branch pr186 created (now b80fb6b)

2020-01-30 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a change to branch pr186 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. at b80fb6b net/utils: Fix the wrong mask calculation in net_ipv6_pref2mask No new revisions were added by t

[incubator-nuttx] branch pr186 updated: fix gran_alloc() miss allocation in mm_granalloc.c.

2020-01-30 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch pr186 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/pr186 by this push: new 1600980 fix gran_alloc() miss allocatio

[GitHub] [incubator-nuttx] minabeoki opened a new pull request #186: fix gran_alloc() miss allocation in mm_granalloc.c.

2020-01-30 Thread GitBox
minabeoki opened a new pull request #186: fix gran_alloc() miss allocation in mm_granalloc.c. URL: https://github.com/apache/incubator-nuttx/pull/186 fix gran_alloc() miss allocation in mm_granalloc.c. problem sequence: 1. ptr0 = gran_alloc(handle, 8 << MM_PGSHIFT); 2. ptr1 =

[incubator-nuttx] branch master updated (5a24d49 -> b80fb6b)

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 5a24d49 boards: spresense: Add posix_spawn configuration new affc32c net/: Fix net checksum related i

[incubator-nuttx] 01/03: net/: Fix net checksum related issue

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit affc32c9d13950b1b50250d02556cdbce8f7060d Author: Xiang Xiao AuthorDate: Thu Jan 30 15:45:15 2020 +0800 net/

[incubator-nuttx] 03/03: net/utils: Fix the wrong mask calculation in net_ipv6_pref2mask

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit b80fb6befc99318e53564ceafbdd00ac5ad95107 Author: Xiang Xiao AuthorDate: Thu Jan 30 16:22:18 2020 +0800 net/

[incubator-nuttx] 02/03: net/utils/net_dsec2tick.c: Rturn type should unsigned int

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 174df6b79328f4751b69748bc85bc1431e5db6e4 Author: Xiang Xiao AuthorDate: Thu Jan 30 16:07:19 2020 +0800 net/

[GitHub] [incubator-nuttx] patacongo merged pull request #185: Fix net utils

2020-01-30 Thread GitBox
patacongo merged pull request #185: Fix net utils URL: https://github.com/apache/incubator-nuttx/pull/185 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use th

[incubator-nuttx] 02/03: net_dsec2tick return type should unsigned int

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch pr185 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 1a9265e285f17431fb582d1a2e7a2e7b7dba6fe7 Author: Xiang Xiao AuthorDate: Thu Jan 30 16:07:19 2020 +0800 net_d

[incubator-nuttx] 01/03: Fix net checksum related issue

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch pr185 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 08c6f62256c05acc21751237f0d45c611e097ad0 Author: Xiang Xiao AuthorDate: Thu Jan 30 15:45:15 2020 +0800 Fix n

[incubator-nuttx] 03/03: Fix the wrong mask calculation in net_ipv6_pref2mask

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch pr185 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 5b3c16f77d6865537d78ad7f13305d7a6e9391de Author: Xiang Xiao AuthorDate: Thu Jan 30 16:22:18 2020 +0800 Fix t

[incubator-nuttx] branch pr185 updated (5a24d49 -> 5b3c16f)

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch pr185 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 5a24d49 boards: spresense: Add posix_spawn configuration new 08c6f62 Fix net checksum related issue

[incubator-nuttx] branch pr185 created (now 5a24d49)

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch pr185 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. at 5a24d49 boards: spresense: Add posix_spawn configuration No new revisions were added by this update.

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580255739 "NOTE that those functions do NOT return the current CPU. They return the CPU set assigned by the setaffinity() int

[GitHub] [incubator-nuttx-apps] patacongo edited a comment on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo edited a comment on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580250205 For pthreads, GNU supports the non-POSIX (_np) function so set affinity and also: int pthread_get

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580250205 For pthreads, GNU supports the non-POSIX (_np) function so set affinity and also: int pthread_getaffinit

[GitHub] [incubator-nuttx-apps] jerpelea commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
jerpelea commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580246167 I agree and respect your decision This is an autom

[GitHub] [incubator-nuttx-apps] patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580243550 "We need to see the CPU affiliation for SMP"... maybe so (although is it volatile and not reliable in applications.

[GitHub] [incubator-nuttx-apps] patacongo commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#discussion_r372934317 ## File path: examples/hello/hello_main.c ## @@ -50,6 +54,12 @@ int main(int

[GitHub] [incubator-nuttx-apps] patacongo commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#discussion_r372933612 ## File path: examples/hello/hello_main.c ## @@ -50,6 +54,12 @@ int main(int

[GitHub] [incubator-nuttx] yamt commented on a change in pull request #179: macOS support for sim

2020-01-30 Thread GitBox
yamt commented on a change in pull request #179: macOS support for sim URL: https://github.com/apache/incubator-nuttx/pull/179#discussion_r372913101 ## File path: arch/sim/src/sim/up_initialstate.c ## @@ -67,6 +67,6 @@ void up_initial_state(struct tcb_s *tcb) { memset(

[GitHub] [incubator-nuttx-apps] jerpelea commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
jerpelea commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#discussion_r372910258 ## File path: examples/hello/hello_main.c ## @@ -50,6 +54,12 @@ int main(int a

[incubator-nuttx-apps] branch master created (now 4e509c8)

2020-01-30 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git. at 4e509c8 Revert "examples: hello: Show CPU index when running in SMP mode" No new revisions were ad

[GitHub] [incubator-nuttx-apps] jerpelea merged pull request #38: Revert "examples: hello: Show CPU index when running in SMP mode"

2020-01-30 Thread GitBox
jerpelea merged pull request #38: Revert "examples: hello: Show CPU index when running in SMP mode" URL: https://github.com/apache/incubator-nuttx-apps/pull/38 This is an automated message from the Apache Git Service. To res

[GitHub] [incubator-nuttx-apps] jerpelea opened a new pull request #38: Revert "examples: hello: Show CPU index when running in SMP mode"

2020-01-30 Thread GitBox
jerpelea opened a new pull request #38: Revert "examples: hello: Show CPU index when running in SMP mode" URL: https://github.com/apache/incubator-nuttx-apps/pull/38 Reverts apache/incubator-nuttx-apps#37 This is an automated

[incubator-nuttx-apps] branch revert-37-hello_with_smp created (now e7303a4)

2020-01-30 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a change to branch revert-37-hello_with_smp in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git. at e7303a4 Revert "examples: hello: Show CPU index when running in SMP mode" This b

[incubator-nuttx-apps] 01/01: Revert "examples: hello: Show CPU index when running in SMP mode"

2020-01-30 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch revert-37-hello_with_smp in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git commit e7303a4a74e9f7640130e6a44ae8133147491615 Author: Alin Jerpelea AuthorDate: Thu Jan 30

[incubator-nuttx-apps] branch master updated: Revert "examples: hello: Show CPU index when running in SMP mode"

2020-01-30 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 4e509c8 Revert "examples: hello: S

[GitHub] [incubator-nuttx-apps] patacongo commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
patacongo commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#discussion_r372894731 ## File path: examples/hello/hello_main.c ## @@ -50,6 +54,12 @@ int main(int

[GitHub] [incubator-nuttx] jerpelea commented on issue #180: Revert "macOS support for sim"

2020-01-30 Thread GitBox
jerpelea commented on issue #180: Revert "macOS support for sim" URL: https://github.com/apache/incubator-nuttx/pull/180#issuecomment-580181100 done ! thanks for reminding me This is an automated message from the Apache Gi

[GitHub] [incubator-nuttx] Ouss4 commented on issue #180: Revert "macOS support for sim"

2020-01-30 Thread GitBox
Ouss4 commented on issue #180: Revert "macOS support for sim" URL: https://github.com/apache/incubator-nuttx/pull/180#issuecomment-580179904 @jerpelea Should the `revert-179-osx-sim` branch be deleted as well? This is an autom

[GitHub] [incubator-nuttx-apps] jerpelea commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
jerpelea commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580160581 @masayuki2009 please investigate the API approach

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
xiaoxiang781216 commented on a change in pull request #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#discussion_r372767700 ## File path: examples/hello/hello_main.c ## @@ -50,6 +54,12 @@ int mai

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580160245 > Sorry I can't see any comment here > We need to see the CPU affiliation for SMP Sorry, I forget to

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580159799 Yes, but the better approach is expose this information through the offiical API, something lke sched_getcpu:

[GitHub] [incubator-nuttx-apps] jerpelea commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
jerpelea commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580155772 Sorry I can't see any comment here We need to see the CPU affiliation for SMP --

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 edited a comment on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
xiaoxiang781216 edited a comment on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580149014 @jerpelea my comment doesn't get addressed, it's very bad practice to call OS internal fucntion from u

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
xiaoxiang781216 commented on issue #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37#issuecomment-580149014 @jerpelea my comment doesn't get addressed, it's very bad practice to call OS internal fucntion from user spa

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #185: Fix net utils

2020-01-30 Thread GitBox
xiaoxiang781216 opened a new pull request #185: Fix net utils URL: https://github.com/apache/incubator-nuttx/pull/185 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHu

[incubator-nuttx-apps] branch master updated: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 715517b examples: hello: Show C

[GitHub] [incubator-nuttx] jerpelea closed pull request #180: Revert "macOS support for sim"

2020-01-30 Thread GitBox
jerpelea closed pull request #180: Revert "macOS support for sim" URL: https://github.com/apache/incubator-nuttx/pull/180 This is an automated message from the Apache Git Service. To respond to the message, please log on to G

[GitHub] [incubator-nuttx-apps] jerpelea merged pull request #37: examples: hello: Show CPU index when running in SMP mode

2020-01-30 Thread GitBox
jerpelea merged pull request #37: examples: hello: Show CPU index when running in SMP mode URL: https://github.com/apache/incubator-nuttx-apps/pull/37 This is an automated message from the Apache Git Service. To respond to t

[incubator-nuttx] branch master updated: boards: spresense: Add posix_spawn configuration

2020-01-30 Thread jerpelea
This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 5a24d49 boards: spresense: Add posix

[GitHub] [incubator-nuttx] jerpelea merged pull request #184: boards: spresense: Add posix_spawn configuration

2020-01-30 Thread GitBox
jerpelea merged pull request #184: boards: spresense: Add posix_spawn configuration URL: https://github.com/apache/incubator-nuttx/pull/184 This is an automated message from the Apache Git Service. To respond to the message,