From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4E01C5B1.3020307@domain.hid> Date: Wed, 22 Jun 2011 12:36:33 +0200 From: Gilles Chanteperdrix MIME-Version: 1.0 References: <4E01B55C.7030507@domain.hid> In-Reply-To: <4E01B55C.7030507@domain.hid> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Xenomai-core] User space stack pre-faulting List-Id: Xenomai life and development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: Xenomai core On 06/22/2011 11:26 AM, Jan Kiszka wrote: > Hi Gilles, > > do you remember reasons for only pre-faulting the main thread's stack? > The desire to avoid wasting resources by forcing all stacks into memory? > > I've the requirement on my table to provide a generic solution of all > shadow threads. I think this should be possible using pthread_getattr_np > and walking the stack page-wise, but I may miss some pitfall. Last time I checked, only the main thread stack was mapped on demand. Other threads have mmaped stacks, which are made present by mlockall, so, do not need faulting. -- Gilles.