From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4E145A2E.2080406@domain.hid> Date: Wed, 06 Jul 2011 14:50:54 +0200 From: Gilles Chanteperdrix MIME-Version: 1.0 References: <4E00B9BA.2050306@domain.hid> <4E145376.8000402@domain.hid> In-Reply-To: <4E145376.8000402@domain.hid> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Xenomai-core] Implementation of skin Arinc653, process don't return List-Id: Xenomai life and development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: zenati Cc: Xenomai-core@domain.hid On 07/06/2011 02:22 PM, zenati wrote: > Dear, > > I have implement a first version of the skin Arinc 653. However, I match > one bug. Each time I execute a test I have implemented (Hello world > test). The process display "Hello world!" but don't return and even if I > do control-z or control-c the process don't terminate. > > have and idea to fix this problem?? It is hard to say anything witout seeing any code, but, when you hit ctrl-C or ctrl-Z, the process receives a signal SIGINT or SIGTSTP. So, in the implementation of this skin, did you handle the interruption of blocking system calls by a signal correctly ? -- Gilles.