forked from Imagelibrary/rtems
Rename _POSIX_Absolute_timeout_to_ticks() to _TOD_Absolute_timeout_to_ticks() and move it to the score directory. Delete empty <rtems/posix/time.h>.
43 lines
798 B
C
43 lines
798 B
C
/**
|
|
* @file
|
|
*
|
|
* @brief Function shall Destroy a Barrier Attribues Object
|
|
* @ingroup POSIXAPI
|
|
*/
|
|
|
|
/*
|
|
* COPYRIGHT (c) 1989-2007.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <pthread.h>
|
|
#include <errno.h>
|
|
|
|
#include <rtems/system.h>
|
|
#include <rtems/score/watchdog.h>
|
|
#include <rtems/posix/condimpl.h>
|
|
#include <rtems/posix/muteximpl.h>
|
|
|
|
/*
|
|
* Barrier Initialization Attributes
|
|
*/
|
|
|
|
int pthread_barrierattr_destroy(
|
|
pthread_barrierattr_t *attr
|
|
)
|
|
{
|
|
if ( !attr || attr->is_initialized == false )
|
|
return EINVAL;
|
|
|
|
attr->is_initialized = false;
|
|
return 0;
|
|
}
|