diff options
| author | Lennart Poettering <lennart@poettering.net> | 2007-11-14 16:11:09 +0000 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2007-11-14 16:11:09 +0000 | 
| commit | 461e36910a20a5cfa7ed333b718b705f9ec9d0fd (patch) | |
| tree | 5a6abbf09847ec4ccb916a290241dbd4c5263b8a | |
| parent | 1765b13386936bfc57cdd68ec9e97186e16bea9a (diff) | |
use a free list for allocation pa_operation objects
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2058 fefdeb5f-60dc-0310-8127-8f9354f1896f
| -rw-r--r-- | src/pulse/operation.c | 11 | 
1 files changed, 9 insertions, 2 deletions
diff --git a/src/pulse/operation.c b/src/pulse/operation.c index ed5eb4aa..8a782fd1 100644 --- a/src/pulse/operation.c +++ b/src/pulse/operation.c @@ -27,15 +27,20 @@  #include <pulse/xmalloc.h>  #include <pulsecore/macro.h> +#include <pulsecore/flist.h>  #include "internal.h"  #include "operation.h" +PA_STATIC_FLIST_DECLARE(operations, 0, pa_xfree); +  pa_operation *pa_operation_new(pa_context *c, pa_stream *s, pa_operation_cb_t cb, void *userdata) {      pa_operation *o;      pa_assert(c); -    o = pa_xnew(pa_operation, 1); +    if (!(o = pa_flist_pop(PA_STATIC_FLIST_GET(operations)))) +        o = pa_xnew(pa_operation, 1); +      PA_REFCNT_INIT(o);      o->context = c;      o->stream = s; @@ -66,7 +71,9 @@ void pa_operation_unref(pa_operation *o) {      if (PA_REFCNT_DEC(o) <= 0) {          pa_assert(!o->context);          pa_assert(!o->stream); -        pa_xfree(o); + +        if (pa_flist_push(PA_STATIC_FLIST_GET(operations), o) < 0) +            pa_xfree(o);      }  }  | 
