summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_barrierinit.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_barrierinit.c')
-rw-r--r--nuttx/sched/pthread_barrierinit.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_barrierinit.c b/nuttx/sched/pthread_barrierinit.c
index 1d8dd00c3..73b974b18 100644
--- a/nuttx/sched/pthread_barrierinit.c
+++ b/nuttx/sched/pthread_barrierinit.c
@@ -2,7 +2,7 @@
* sched/pthread_barrieinit.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
@@ -69,7 +69,7 @@
********************************************************************************/
/********************************************************************************
- * Function: pthread_barrier_init
+ * Name: pthread_barrier_init
*
* Description:
* The pthread_barrier_init() function allocates any resources required to use
@@ -117,5 +117,6 @@ int pthread_barrier_init(FAR pthread_barrier_t *barrier,
sem_init(&barrier->sem, 0, 0);
barrier->count = count;
}
+
return ret;
}