summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/asyncq.h
diff options
context:
space:
mode:
authorMads Kiilerich <mads@kiilerich.com>2009-12-11 16:20:31 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-05 21:27:33 +0100
commit6faf38313e5f313cbcfe5c78af1dd310131798d2 (patch)
tree763963d6d62252b5a7ec345752e3f36e08b71471 /src/pulsecore/asyncq.h
parent0e47065fe5a410bcb7c367c23fc4d99b71fd82b2 (diff)
headers: Some trivial fixes for some documentation typos
Note also the willneed/will_need inconsistency. I guess it could be nice to ASAP choose one of them and introduce a backward compatibility hack for the other. The issues was mostly found with: for a in $(grep -r '^[ /]\*.*()' $( find -name '*.[ch]') | sed 's,^.* \([^ ]*\)().*$,\1,g' | sort | uniq | grep ^pa_) do grep -rq "^.[^*].*\<$a(" $(find * -name '*.h') || echo $a done
Diffstat (limited to 'src/pulsecore/asyncq.h')
-rw-r--r--src/pulsecore/asyncq.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pulsecore/asyncq.h b/src/pulsecore/asyncq.h
index e6847ab8..47ccbf03 100644
--- a/src/pulsecore/asyncq.h
+++ b/src/pulsecore/asyncq.h
@@ -48,8 +48,9 @@ void pa_asyncq_free(pa_asyncq* q, pa_free_cb_t free_cb);
void* pa_asyncq_pop(pa_asyncq *q, pa_bool_t wait);
int pa_asyncq_push(pa_asyncq *q, void *p, pa_bool_t wait);
-/* Similar to pa_asyncq_push(), but if the queue is full, postpone it
- * locally and delay until pa_asyncq_before_poll_post() */
+/* Similar to pa_asyncq_push(), but if the queue is full, postpone the
+ * appending of the item locally and delay until
+ * pa_asyncq_before_poll_post() is called. */
void pa_asyncq_post(pa_asyncq*l, void *p);
/* For the reading side */