Standardize the width of all comment boxes in C files

This commit is contained in:
Gregory Nutt
2015-10-02 17:43:18 -06:00
parent cb9e27c3b0
commit 5b51a9fcdd
230 changed files with 2054 additions and 2054 deletions
+24 -24
View File
@@ -1,4 +1,4 @@
/************************************************************************
/****************************************************************************
* sched/pthread/pthread_completejoin.c
*
* Copyright (C) 2007, 2009, 2011, 2013 Gregory Nutt. All rights reserved.
@@ -31,11 +31,11 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Included Files
************************************************************************/
****************************************************************************/
#include <nuttx/config.h>
@@ -49,27 +49,27 @@
#include "group/group.h"
#include "pthread/pthread.h"
/************************************************************************
/****************************************************************************
* Pre-processor Definitions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Type Declarations
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Public Data
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Variables
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Private Functions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Name: pthread_notifywaiters
*
* Description:
@@ -77,7 +77,7 @@
* exit data. This must be done by the child at child thread
* destruction time.
*
************************************************************************/
****************************************************************************/
static bool pthread_notifywaiters(FAR struct join_s *pjoin)
{
@@ -122,7 +122,7 @@ static bool pthread_notifywaiters(FAR struct join_s *pjoin)
return false;
}
/************************************************************************
/****************************************************************************
* Name: pthread_removejoininfo
*
* Description:
@@ -137,7 +137,7 @@ static bool pthread_notifywaiters(FAR struct join_s *pjoin)
* Assumptions:
* The caller has provided protection from re-entrancy.
*
************************************************************************/
****************************************************************************/
static void pthread_removejoininfo(FAR struct task_group_s *group,
pid_t pid)
@@ -192,11 +192,11 @@ static void pthread_removejoininfo(FAR struct task_group_s *group,
}
}
/************************************************************************
/****************************************************************************
* Public Functions
************************************************************************/
****************************************************************************/
/************************************************************************
/****************************************************************************
* Name: pthread_completejoin
*
* Description:
@@ -214,7 +214,7 @@ static void pthread_removejoininfo(FAR struct task_group_s *group,
*
* Assumptions:
*
************************************************************************/
****************************************************************************/
int pthread_completejoin(pid_t pid, FAR void *exit_value)
{
@@ -268,7 +268,7 @@ int pthread_completejoin(pid_t pid, FAR void *exit_value)
return OK;
}
/************************************************************************
/****************************************************************************
* Name: pthread_destroyjoin
*
* Description:
@@ -282,7 +282,7 @@ int pthread_completejoin(pid_t pid, FAR void *exit_value)
* Assumptions:
* The caller holds tg_joinsem
*
************************************************************************/
****************************************************************************/
void pthread_destroyjoin(FAR struct task_group_s *group,
FAR struct join_s *pjoin)