2017-11-26 02:00:33 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2005-04-02 01:20:00 +00:00
|
|
|
* Copyright (c) 2003 David Xu <davidxu@freebsd.org>.
|
2004-02-19 13:51:52 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
2005-04-02 01:20:00 +00:00
|
|
|
* notice(s), this list of conditions and the following disclaimer as
|
|
|
|
* the first lines of this file unmodified other than the possible
|
|
|
|
* addition of one or more copyright notices.
|
2004-02-19 13:51:52 +00:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
2005-04-02 01:20:00 +00:00
|
|
|
* notice(s), this list of conditions and the following disclaimer in the
|
2004-02-19 13:51:52 +00:00
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
2005-04-02 01:20:00 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
2004-02-19 13:51:52 +00:00
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
2005-04-02 01:20:00 +00:00
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
2004-02-19 13:51:52 +00:00
|
|
|
*/
|
|
|
|
|
2016-04-08 11:15:26 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2006-04-04 02:57:49 +00:00
|
|
|
#include "namespace.h"
|
2005-04-02 01:20:00 +00:00
|
|
|
#include <errno.h>
|
2004-02-19 13:51:52 +00:00
|
|
|
#include <stdlib.h>
|
2005-04-02 01:20:00 +00:00
|
|
|
#include <pthread.h>
|
2006-04-04 02:57:49 +00:00
|
|
|
#include "un-namespace.h"
|
2004-02-19 13:51:52 +00:00
|
|
|
|
|
|
|
#include "thr_private.h"
|
|
|
|
|
|
|
|
__weak_reference(_pthread_barrierattr_destroy, pthread_barrierattr_destroy);
|
|
|
|
__weak_reference(_pthread_barrierattr_init, pthread_barrierattr_init);
|
|
|
|
__weak_reference(_pthread_barrierattr_setpshared,
|
2005-04-02 01:20:00 +00:00
|
|
|
pthread_barrierattr_setpshared);
|
|
|
|
__weak_reference(_pthread_barrierattr_getpshared,
|
|
|
|
pthread_barrierattr_getpshared);
|
2004-02-19 13:51:52 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
_pthread_barrierattr_destroy(pthread_barrierattr_t *attr)
|
|
|
|
{
|
2005-04-02 01:20:00 +00:00
|
|
|
|
|
|
|
if (attr == NULL || *attr == NULL)
|
2004-02-19 13:51:52 +00:00
|
|
|
return (EINVAL);
|
2005-04-02 01:20:00 +00:00
|
|
|
|
2004-02-19 13:51:52 +00:00
|
|
|
free(*attr);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2018-08-18 01:05:38 +00:00
|
|
|
_pthread_barrierattr_getpshared(const pthread_barrierattr_t * __restrict attr,
|
|
|
|
int * __restrict pshared)
|
2004-02-19 13:51:52 +00:00
|
|
|
{
|
2005-04-02 01:20:00 +00:00
|
|
|
|
|
|
|
if (attr == NULL || *attr == NULL)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
*pshared = (*attr)->pshared;
|
2004-02-19 13:51:52 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-04-02 01:20:00 +00:00
|
|
|
_pthread_barrierattr_init(pthread_barrierattr_t *attr)
|
2004-02-19 13:51:52 +00:00
|
|
|
{
|
2005-04-02 01:20:00 +00:00
|
|
|
|
|
|
|
if (attr == NULL)
|
2004-02-19 13:51:52 +00:00
|
|
|
return (EINVAL);
|
2005-04-02 01:20:00 +00:00
|
|
|
|
|
|
|
if ((*attr = malloc(sizeof(struct pthread_barrierattr))) == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
(*attr)->pshared = PTHREAD_PROCESS_PRIVATE;
|
2004-02-19 13:51:52 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_pthread_barrierattr_setpshared(pthread_barrierattr_t *attr, int pshared)
|
|
|
|
{
|
2005-04-02 01:20:00 +00:00
|
|
|
|
2016-02-28 17:52:33 +00:00
|
|
|
if (attr == NULL || *attr == NULL ||
|
|
|
|
(pshared != PTHREAD_PROCESS_PRIVATE &&
|
|
|
|
pshared != PTHREAD_PROCESS_SHARED))
|
2005-04-02 01:20:00 +00:00
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
(*attr)->pshared = pshared;
|
2004-02-19 13:51:52 +00:00
|
|
|
return (0);
|
|
|
|
}
|