Re: [PATCH] smpschededf02: Document reset() function

2020-08-05 Thread Richi Dubey
I would. Thank you. On Wed, Aug 5, 2020 at 10:24 AM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > On 04/08/2020 16:23, Richi Dubey wrote: > > Thanks. > > > > So for the code: > > > --

Re: [PATCH] smpschededf02: Document reset() function

2020-08-04 Thread Sebastian Huber
On 04/08/2020 16:23, Richi Dubey wrote: Thanks. So for the code: --   for (i = 0; i < CPU_COUNT; ++i) {     const Per_CPU_Control *c;     const Thread_Control *h;     c = _Per_CPU_Get_by_index(CP

Re: [PATCH] smpschededf02: Document reset() function

2020-08-04 Thread Richi Dubey
Thanks. So for the code: -- for (i = 0; i < CPU_COUNT; ++i) { const Per_CPU_Control *c; const Thread_Control *h; c = _Per_CPU_Get_by_index(CPU_COUNT - 1 - i); h = c->heir; sc = r

Re: [PATCH] smpschededf02: Document reset() function

2020-08-04 Thread Sebastian Huber
On 04/08/2020 14:25, Richi Dubey wrote: This helps. Thank you. If things are still unclear, don't hesitate to ask again. Your questions are really helpful to improve the documentation. ___ devel mailing list devel@rtems.org http://lists.rtems.org/ma

Re: [PATCH] smpschededf02: Document reset() function

2020-08-04 Thread Richi Dubey
This helps. Thank you. On Tue, Aug 4, 2020 at 3:58 PM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > --- > testsuites/smptests/smpschededf02/init.c | 14 +- > 1 file changed, 13 insertions(+), 1 deletion(-) > > diff --git a/testsuites/smptests/smpschededf02/init.c > b

[PATCH] smpschededf02: Document reset() function

2020-08-04 Thread Sebastian Huber
--- testsuites/smptests/smpschededf02/init.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/testsuites/smptests/smpschededf02/init.c b/testsuites/smptests/smpschededf02/init.c index cd8895edd5..fae2d76bf3 100644 --- a/testsuites/smptests/smpschededf02/init.c ++