From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4D2C49D0.3070206@domain.hid> Date: Tue, 11 Jan 2011 13:15:12 +0100 From: Gilles Chanteperdrix MIME-Version: 1.0 References: <201101111223.46697.peter@domain.hid> In-Reply-To: <201101111223.46697.peter@domain.hid> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Xenomai-help] Correct use of xeno_sigshadow_install() List-Id: Help regarding installation and common use of Xenomai List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Soetens Cc: xenomai-help Peter Soetens wrote: > struct sigaction sa; > sa.sa_sigaction = &rl_sigwinch_handler; > sa.sa_flags = SA_SIGINFO; You probably want sa.sa_fags = SA_SIGINFO | SA_RESTART here. And you should initialize sa.sa_mask. -- Gilles.