[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xenstore: set READ_THREAD_STACKSIZE to a sane value
commit da6a0e86d6a079102abdd0858a19f1e1fae584fc Author: Roger Pau Monne <roger.pau@xxxxxxxxxx> AuthorDate: Fri Mar 7 13:22:58 2014 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Fri Mar 21 11:25:26 2014 +0000 xenstore: set READ_THREAD_STACKSIZE to a sane value On FreeBSD PTHREAD_STACK_MIN is 2048 by default, which is obviously too low. Set the default back to the previous value (16 * 1024), or if that's too low set it to PTHREAD_STACK_MIN. Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Cc: Ian Jackson <ian.jackson@xxxxxxxxxx> --- tools/xenstore/xs.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/tools/xenstore/xs.c b/tools/xenstore/xs.c index dd03a85..968141d 100644 --- a/tools/xenstore/xs.c +++ b/tools/xenstore/xs.c @@ -724,7 +724,10 @@ bool xs_watch(struct xs_handle *h, const char *path, const char *token) struct iovec iov[2]; #ifdef USE_PTHREAD -#define READ_THREAD_STACKSIZE PTHREAD_STACK_MIN +#define DEFAULT_THREAD_STACKSIZE (16 * 1024) +#define READ_THREAD_STACKSIZE \ + ((DEFAULT_THREAD_STACKSIZE < PTHREAD_STACK_MIN) ? \ + PTHREAD_STACK_MIN : DEFAULT_THREAD_STACKSIZE) /* We dynamically create a reader thread on demand. */ mutex_lock(&h->request_mutex); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |