Re:

2018-10-25 Thread Amaan Cheval
Hi! I'm not sure where you're quoting "to the gci claimed task" from, but as you seemed to have guessed, we want you to submit the patch on the GCI website as an attachment, when you submit your task for review. Remember to also attach the screenshots if the task asks for those! On Fri, Oct 26, 20

[no subject]

2018-10-25 Thread 18Y5C31 ZENON HANS TANEKA
Hello! I have successfully built the tools. Now I am tasked to submit a git patch to the gci claimed task (gci website). git patch is understandable but what does it mean by the 'to the gci claimed task'? ___ users mailing list users@rtems.org http://list

Re: Re: python version for rtems 4.11.2

2018-10-25 Thread bin.w...@qkmtech.com
hi thank you very much .i will try what we supplied to me bestwishes ben bin.w...@qkmtech.com From: Sebastian Huber Date: 2018-10-25 20:47 To: bin.w...@qkmtech.com; Users Subject: Re: python version for rtems 4.11.2 Hello, I used this https://devel.rtems.org/wiki/Packages/Python to cr

Console API

2018-10-25 Thread Ярослав Лещинский
Hello, I'm working with a new BSP and now trying to add console implementation. I'm working on 4.11 branch. During the last try I've got such error: *error: unknown type name 'rtems_termios_handler'* Although the documentation here: https://docs.rtems.org/releases/rtems-docs-4.11.2/bsp-howto/c

Re:

2018-10-25 Thread Joel Sherrill
On Thu, Oct 25, 2018 at 7:38 AM 18Y5C31 ZENON HANS TANEKA < zenon.hans.tan...@dhs.sg> wrote: > Hi! I am a GCI student working on a task. I am meeting the problem of > 'make' returning the error > > *** No rule to make target 'all'. Stop. > make[2]: Leaving directory > '/home/zehata/development/rt

Re: python version for rtems 4.11.2

2018-10-25 Thread Sebastian Huber
Hello, I used this https://devel.rtems.org/wiki/Packages/Python to create a Makefile for Python 3.6. See attached files. Its a hack. I used RTEMS 5. -- Sebastian Huber, embedded brains GmbH Address : Dornierstr. 4, D-82178 Puchheim, Germany Phone : +49 89 189 47 41-16 Fax : +49 89 189

python version for rtems 4.11.2

2018-10-25 Thread bin.w...@qkmtech.com
hi everyone i use the rtems 4.11.2, i want to use python, but i do not know which version i can use in rtems 4.11.2? is it support python 3? if you can give me some method or example to use python in rtems, i will thank you very much ben bin.w...@qkmtech.com ___

[no subject]

2018-10-25 Thread 18Y5C31 ZENON HANS TANEKA
Hi! I am a GCI student working on a task. I am meeting the problem of 'make' returning the error *** No rule to make target 'all'. Stop. make[2]: Leaving directory '/home/zehata/development/rtems/kernel/pc686/i386-rtems4.11/c/pc686' Makefile:359: recipe for target 'all-recursive' failed make[1]:

Re: rtems_message_queue_receive / rtems_event_receive issues

2018-10-25 Thread Sebastian Huber
On 25/10/2018 13:51, Catalin Demergian wrote: btw, is there a unit test somewhere for the chain implementation? otherwise I will think of a small program where I will try to make it fail with double insert/erase. Yes, for example this one: testsuites/sptests/spchain/init.c -- Sebastian Hube

Re: rtems_message_queue_receive / rtems_event_receive issues

2018-10-25 Thread Catalin Demergian
btw, is there a unit test somewhere for the chain implementation? otherwise I will think of a small program where I will try to make it fail with double insert/erase. Catalin On Thu, Oct 25, 2018 at 2:18 PM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > On 25/10/2018 13:03, Cata

Re: rtems_message_queue_receive / rtems_event_receive issues

2018-10-25 Thread Sebastian Huber
On 25/10/2018 13:03, Catalin Demergian wrote: This is really strange. If you use cpsid/cpsie around the append_cnt ++ and --, then append_cnt should never be > 1. If this really the case, then this looks like a processor bug. -> No, after I saw that it didn't fix the problem I commented the dis/

Re: rtems_message_queue_receive / rtems_event_receive issues

2018-10-25 Thread Catalin Demergian
This is really strange. If you use cpsid/cpsie around the append_cnt ++ and --, then append_cnt should never be > 1. If this really the case, then this looks like a processor bug. -> No, after I saw that it didn't fix the problem I commented the dis/en, so the value 2 was obtained without the dis/e

Re: rtems_message_queue_receive / rtems_event_receive issues

2018-10-25 Thread Sebastian Huber
On 25/10/2018 11:00, Catalin Demergian wrote: Hi, First, I would like to conceptually understand how a function as simple as _Chain_Append_unprotected could fail. The chain operations fail if you try to append a node that is already on a chain or extract a node which is not on a chain. I a

Re: rtems_message_queue_receive / rtems_event_receive issues

2018-10-25 Thread Catalin Demergian
Hi, First, I would like to conceptually understand how a function as simple as _Chain_Append_unprotected could fail. I added a patch like this RTEMS_INLINE_ROUTINE void _Chain_Append_unprotected( Chain_Control *the_chain, Chain_Node*the_node ) { append_cnt++; if(append_cnt > append_cnt_