summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/prwlockdestroy.c
blob: 49fd630ecd447a24c42f893196c484ed78b78880 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
 *  @file
 *
 *  @brief Destroy a RWLock
 *  @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 <rtems/posix/rwlockimpl.h>

int pthread_rwlock_destroy(
  pthread_rwlock_t *_rwlock
)
{
  POSIX_RWLock_Control *the_rwlock;
  Thread_queue_Context  queue_context;

  the_rwlock = _POSIX_RWLock_Get( _rwlock );
  POSIX_RWLOCK_VALIDATE_OBJECT( the_rwlock );

  _CORE_RWLock_Acquire( &the_rwlock->RWLock, &queue_context );

  /*
   *  If there is at least one thread waiting, then do not delete it.
   */

  if ( !_Thread_queue_Is_empty( &the_rwlock->RWLock.Queue.Queue ) ) {
    _CORE_RWLock_Release( &the_rwlock->RWLock, &queue_context );
    return EBUSY;
  }

  /*
   *  POSIX doesn't require behavior when it is locked.
   */

  the_rwlock->flags = ~the_rwlock->flags;
  _CORE_RWLock_Release( &the_rwlock->RWLock, &queue_context );
  return 0;
}