[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH v2] libs/store: make build without PTHREAD_STACK_MIN
On Thu, Jan 28, 2021 at 11:08:08AM +0000, Andrew Cooper wrote: > On 28/01/2021 10:57, Roger Pau Monné wrote: > > On Tue, Jan 26, 2021 at 11:47:59PM +0100, Manuel Bouyer wrote: > >> On NetBSD, PTHREAD_STACK_MIN is not available. > >> If PTHREAD_STACK_MIN is not defined, define it to 0 so that we fallback to > >> DEFAULT_THREAD_STACKSIZE > >> > > I would add: > > > > Suggested-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> > > > >> Signed-off-by: Manuel Bouyer <bouyer@xxxxxxxxxx> > > Reviewed-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> > > > >> --- > >> tools/libs/store/xs.c | 5 +++++ > >> 1 file changed, 5 insertions(+) > >> > >> diff --git a/tools/libs/store/xs.c b/tools/libs/store/xs.c > >> index 4ac73ec317..b6ecbd787e 100644 > >> --- a/tools/libs/store/xs.c > >> +++ b/tools/libs/store/xs.c > >> @@ -811,6 +811,11 @@ bool xs_watch(struct xs_handle *h, const char *path, > >> const char *token) > >> > >> #ifdef USE_PTHREAD > >> #define DEFAULT_THREAD_STACKSIZE (16 * 1024) > >> +/* NetBSD doesn't have PTHREAD_STACK_MIN. */ > >> +#ifndef PTHREAD_STACK_MIN > >> +# define PTHREAD_STACK_MIN 0 > >> +#endif > >> + > >> #define READ_THREAD_STACKSIZE \ > >> ((DEFAULT_THREAD_STACKSIZE < PTHREAD_STACK_MIN) ? \ > >> PTHREAD_STACK_MIN : DEFAULT_THREAD_STACKSIZE) > > There was also a suggestion to use MAX(PTHREAD_STACK_MIN, > > DEFAULT_THREAD_STACKSIZE). Is maybe MAX not defied here? > > TBH, I was planning to submit an incremental cleanup doing this > separately. It would be cleaner than putting cleanup into the "fix > NetBSD" patch. yes, that was my idea too -- Manuel Bouyer <bouyer@xxxxxxxxxxxxxxx> NetBSD: 26 ans d'experience feront toujours la difference --
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |