mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
Minor tweaks to comment blocks and includes.
Fix the copyright lines, tweak doxygen formatting, and remove some unnecessary includes. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@248226 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Asterisk -- An open source telephony toolkit.
|
||||
*
|
||||
* Copyright (C) 2007-2008, Dwayne M. Hubbard
|
||||
* Copyright (C) 2007-2008, Digium, Inc.
|
||||
*
|
||||
* Dwayne M. Hubbard <dhubbard@digium.com>
|
||||
*
|
||||
@@ -15,8 +15,9 @@
|
||||
* the GNU General Public License Version 2. See the LICENSE file
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
/*! \file
|
||||
*
|
||||
|
||||
/*!
|
||||
* \file
|
||||
* \brief Maintain a container of uniquely-named taskprocessor threads that can be shared across modules.
|
||||
*
|
||||
* \author Dwayne Hubbard <dhubbard@digium.com>
|
||||
@@ -26,9 +27,6 @@
|
||||
|
||||
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
|
||||
#include <signal.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
#include "asterisk/_private.h"
|
||||
#include "asterisk/module.h"
|
||||
#include "asterisk/time.h"
|
||||
@@ -37,11 +35,13 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#include "asterisk/taskprocessor.h"
|
||||
|
||||
|
||||
/*! \brief tps_task structure is queued to a taskprocessor
|
||||
/*!
|
||||
* \brief tps_task structure is queued to a taskprocessor
|
||||
*
|
||||
* tps_tasks are processed in FIFO order and freed by the taskprocessing
|
||||
* thread after the task handler returns. The callback function that is assigned
|
||||
* to the execute() function pointer is responsible for releasing datap resources if necessary. */
|
||||
* to the execute() function pointer is responsible for releasing datap resources if necessary.
|
||||
*/
|
||||
struct tps_task {
|
||||
/*! \brief The execute() task callback function pointer */
|
||||
int (*execute)(void *datap);
|
||||
|
Reference in New Issue
Block a user