From: Mark Michelson Date: Mon, 7 Jan 2013 22:56:37 +0000 (+0000) Subject: Add some doxygen and remove an unnecessary unlock. X-Git-Tag: 13.0.0-beta1~2194^2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a08847c270f98550d8f2ffe141ae923fd941b6b7;p=thirdparty%2Fasterisk.git Add some doxygen and remove an unnecessary unlock. git-svn-id: https://origsvn.digium.com/svn/asterisk/team/mmichelson/threadpool@378653 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/taskprocessor.c b/main/taskprocessor.c index 9b26263bbc..6ab0e12776 100644 --- a/main/taskprocessor.c +++ b/main/taskprocessor.c @@ -143,7 +143,10 @@ static int default_tps_idle(struct default_taskprocessor_listener_pvt *pvt) return pvt->dead; } -/* this is the task processing worker function */ +/*! + * \brief Function that processes tasks in the taskprocessor + * \internal + */ static void *tps_processing_function(void *data) { struct ast_taskprocessor_listener *listener = data; @@ -508,7 +511,6 @@ struct ast_taskprocessor *ast_taskprocessor_get(const char *name, enum ast_tps_o } p = ao2_find(tps_singletons, name, OBJ_KEY); if (p) { - ao2_unlock(tps_singletons); return p; } if (create & TPS_REF_IF_EXISTS) {