2016-08-07 16:25:30 +02:00
|
|
|
/****************************************************************************
|
2021-03-08 22:39:04 +01:00
|
|
|
* libs/libc/pthread/pthread_barrierinit.c
|
2007-03-24 00:22:22 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-03-24 00:22:22 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-03-24 00:22:22 +01:00
|
|
|
*
|
2021-03-02 15:54:21 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-03-24 00:22:22 +01:00
|
|
|
*
|
2016-08-07 16:25:30 +02:00
|
|
|
****************************************************************************/
|
2007-03-24 00:22:22 +01:00
|
|
|
|
2016-08-07 16:25:30 +02:00
|
|
|
/****************************************************************************
|
2007-03-24 00:22:22 +01:00
|
|
|
* Included Files
|
2016-08-07 16:25:30 +02:00
|
|
|
****************************************************************************/
|
2007-03-24 00:22:22 +01:00
|
|
|
|
2009-12-14 19:39:29 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-03-24 00:22:22 +01:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2016-08-07 16:25:30 +02:00
|
|
|
/****************************************************************************
|
2007-03-24 00:22:22 +01:00
|
|
|
* Public Functions
|
2016-08-07 16:25:30 +02:00
|
|
|
****************************************************************************/
|
2007-03-24 00:22:22 +01:00
|
|
|
|
2016-08-07 16:25:30 +02:00
|
|
|
/****************************************************************************
|
2012-07-14 21:30:31 +02:00
|
|
|
* Name: pthread_barrier_init
|
2007-03-24 00:22:22 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2016-08-07 16:25:30 +02:00
|
|
|
* The pthread_barrier_init() function allocates any resources required to
|
|
|
|
* use the barrier referenced by 'barrier' and initialized the barrier
|
|
|
|
* with the attributes referenced by attr. If attr is NULL, the default
|
|
|
|
* barrier attributes will be used. The results are undefined if
|
|
|
|
* pthread_barrier_init() is called when any thread is blocked on the
|
|
|
|
* barrier. The results are undefined if a barrier is used without first
|
|
|
|
* being initialized. The results are undefined if pthread_barrier_init()
|
|
|
|
* is called specifying an already initialized barrier.
|
2007-03-24 00:22:22 +01:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2007-03-24 00:22:22 +01:00
|
|
|
* barrier - the barrier to be initialized
|
|
|
|
* attr - barrier attributes to be used in the initialization.
|
2016-08-07 16:25:30 +02:00
|
|
|
* count - the count to be associated with the barrier. The count
|
|
|
|
* argument specifies the number of threads that must call
|
|
|
|
* pthread_barrier_wait() before any of them successfully return from
|
|
|
|
* the call. The value specified by count must be greater than zero.
|
2007-03-24 00:22:22 +01:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2007-03-24 00:22:22 +01:00
|
|
|
* 0 (OK) on success or on of the following error numbers:
|
|
|
|
*
|
2016-08-07 16:25:30 +02:00
|
|
|
* EAGAIN The system lacks the necessary resources to initialize another
|
|
|
|
* barrier. EINVAL The barrier reference is invalid, or the values
|
|
|
|
* specified by attr are invalid, or the value specified by count
|
|
|
|
* is equal to zero.
|
2007-03-24 00:22:22 +01:00
|
|
|
* ENOMEM Insufficient memory exists to initialize the barrier.
|
2016-08-07 16:25:30 +02:00
|
|
|
* EBUSY The implementation has detected an attempt to reinitialize a
|
|
|
|
* barrier while it is in use.
|
2007-03-24 00:22:22 +01:00
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2016-08-07 16:25:30 +02:00
|
|
|
****************************************************************************/
|
2007-03-24 00:22:22 +01:00
|
|
|
|
|
|
|
int pthread_barrier_init(FAR pthread_barrier_t *barrier,
|
2021-03-02 14:33:27 +01:00
|
|
|
FAR const pthread_barrierattr_t *attr,
|
|
|
|
unsigned int count)
|
2007-03-24 00:22:22 +01:00
|
|
|
{
|
|
|
|
int ret = OK;
|
|
|
|
|
|
|
|
if (!barrier || count == 0)
|
|
|
|
{
|
|
|
|
ret = EINVAL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-03 23:35:24 +02:00
|
|
|
sem_init(&barrier->sem, 0, 0);
|
2021-12-23 10:43:45 +01:00
|
|
|
sem_setprotocol(&barrier->sem, SEM_PRIO_NONE);
|
2007-03-24 00:22:22 +01:00
|
|
|
barrier->count = count;
|
|
|
|
}
|
2012-07-14 21:30:31 +02:00
|
|
|
|
2007-03-24 00:22:22 +01:00
|
|
|
return ret;
|
|
|
|
}
|