Re: [pulseaudio-discuss] [PATCH 2/3] mainloop: Add API to set thread name for threaded mainloop

2013-05-15 Thread Arun Raghavan
On Wed, 2013-05-15 at 08:35 +0200, Peter Meerwald wrote: > > > @@ -132,6 +135,7 @@ void pa_threaded_mainloop_free(pa_threaded_mainloop* m) > > { > > pa_cond_free(m->cond); > > pa_cond_free(m->accept_cond); > > > > +pa_xfree (m->name); > > pa_xfree(m); > > } > > nitpick: the

Re: [pulseaudio-discuss] [PATCH 2/3] mainloop: Add API to set thread name for threaded mainloop

2013-05-14 Thread Peter Meerwald
> @@ -132,6 +135,7 @@ void pa_threaded_mainloop_free(pa_threaded_mainloop* m) { > pa_cond_free(m->cond); > pa_cond_free(m->accept_cond); > > +pa_xfree (m->name); > pa_xfree(m); > } nitpick: there's a whitespace inconsistency -- Peter Meerwald +43-664-218 (mobile)

[pulseaudio-discuss] [PATCH 2/3] mainloop: Add API to set thread name for threaded mainloop

2013-05-14 Thread Arun Raghavan
--- src/map-file| 1 + src/pulse/thread-mainloop.c | 16 +++- src/pulse/thread-mainloop.h | 3 +++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/src/map-file b/src/map-file index 91d61c2..21e3abc 100644 --- a/src/map-file +++ b/src/map-file @@ -344,6