summaryrefslogtreecommitdiffstats
path: root/nuttx/sched/pthread_once.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-14 19:30:31 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-14 19:30:31 +0000
commit907c8fcd4a656a089bd7934756beca9a4256f146 (patch)
treeb34f7d2914cba8aeb9311c5bae3771af40054640 /nuttx/sched/pthread_once.c
parent1eb675344c593d23f1c2ac1b5e56dcabd68e08f2 (diff)
Fix STM32 F2/F4 SDIO clocking; Clean-up files in sched/ directory
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4940 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/sched/pthread_once.c')
-rw-r--r--nuttx/sched/pthread_once.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/nuttx/sched/pthread_once.c b/nuttx/sched/pthread_once.c
index dc0fcd2bd7..4133004729 100644
--- a/nuttx/sched/pthread_once.c
+++ b/nuttx/sched/pthread_once.c
@@ -2,7 +2,7 @@
* sched/pthread_once.c
*
* Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -70,7 +70,7 @@
********************************************************************************/
/********************************************************************************
- * Function: pthread_once
+ * Name: pthread_once
*
* Description:
* The first call to pthread_once() by any thread with a given once_control,
@@ -88,13 +88,15 @@
* init_routine - The initialization routine that will be called once.
*
* Return Value:
- * 0 (OK) on success or EINVAL if either once_control or init_routine are invalid
+ * 0 (OK) on success or EINVAL if either once_control or init_routine are
+ * invalid
*
* Assumptions:
*
********************************************************************************/
-int pthread_once(FAR pthread_once_t *once_control, CODE void (*init_routine)(void))
+int pthread_once(FAR pthread_once_t *once_control,
+ CODE void (*init_routine)(void))
{
/* Sanity checks */