From 21fa1cf857069a507b07d568248aabe98157e43e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 7 May 2008 21:09:49 +0000 Subject: [PATCH] double default asyncq size git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/glitch-free@2386 fefdeb5f-60dc-0310-8127-8f9354f1896f --- src/pulsecore/asyncq.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/pulsecore/asyncq.c b/src/pulsecore/asyncq.c index 34506e4..91f0e50 100644 --- a/src/pulsecore/asyncq.c +++ b/src/pulsecore/asyncq.c @@ -40,7 +40,7 @@ #include "asyncq.h" #include "fdsem.h" -#define ASYNCQ_SIZE 128 +#define ASYNCQ_SIZE 256 /* For debugging purposes we can define _Y to put and extra thread * yield between each operation. */ @@ -73,10 +73,6 @@ PA_STATIC_FLIST_DECLARE(localq, 0, pa_xfree); #define PA_ASYNCQ_CELLS(x) ((pa_atomic_ptr_t*) ((uint8_t*) (x) + PA_ALIGN(sizeof(struct pa_asyncq)))) -static int is_power_of_two(unsigned size) { - return !(size & (size - 1)); -} - static int reduce(pa_asyncq *l, int value) { return value & (unsigned) (l->size - 1); } @@ -87,7 +83,7 @@ pa_asyncq *pa_asyncq_new(unsigned size) { if (!size) size = ASYNCQ_SIZE; - pa_assert(is_power_of_two(size)); + pa_assert(pa_is_power_of_two(size)); l = pa_xmalloc0(PA_ALIGN(sizeof(pa_asyncq)) + (sizeof(pa_atomic_ptr_t) * size)); -- 2.7.4