From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <44450359.2090203@domain.hid> Date: Tue, 18 Apr 2006 11:18:49 -0400 From: Jim Cromie MIME-Version: 1.0 Subject: Re: [Xenomai-core] [PATCH] Check for NPTL and factor user-space skins initialization. References: <17476.64062.107556.216362@domain.hid> In-Reply-To: <17476.64062.107556.216362@domain.hid> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: "Xenomai life and development \(bug reports, patches, discussions\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gilles Chanteperdrix Cc: xenomai@xenomai.org Gilles Chanteperdrix wrote: > For review... > > > > +#ifndef __KERNEL__ > +#include > +#include > +#include > +#include > + > +static inline void xeno_x86_features_check(void) > +{ > +#ifdef CONFIG_XENO_X86_SEP > + size_t n = confstr(_CS_GNU_LIBPTHREAD_VERSION, NULL, 0); > + if (n > 0) > + { > > since this is user code, its possible to read /proc/cpuinfo, and find the sep flag. Is this worth doing also ? if so, I can work a patch up later, unless you feel the urge.