source: rtems/cpukit/posix/src/semdestroy.c @ 631b3c8

5
Last change on this file since 631b3c8 was 631b3c8, checked in by Sebastian Huber <sebastian.huber@…>, on 05/23/16 at 09:40:18

score: Move thread queue MP callout to context

Drop the multiprocessing (MP) dependent callout parameter from the
thread queue extract, dequeue, flush and unblock methods. Merge this
parameter with the lock context into new structure Thread_queue_Context.
This helps to gets rid of the conditionally compiled method call
helpers.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief Destroy an Unnamed Semaphore
5 *  @ingroup POSIX_SEMAPHORE
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2014.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <semaphore.h>
22
23#include <rtems/posix/semaphoreimpl.h>
24
25int sem_destroy(
26  sem_t *sem
27)
28{
29  POSIX_Semaphore_Control *the_semaphore;
30  Thread_queue_Context     queue_context;
31
32  _Objects_Allocator_lock();
33  the_semaphore = _POSIX_Semaphore_Get( sem, &queue_context );
34
35  if ( the_semaphore == NULL ) {
36    _Objects_Allocator_unlock();
37    rtems_set_errno_and_return_minus_one( EINVAL );
38  }
39
40  _CORE_semaphore_Acquire_critical(
41    &the_semaphore->Semaphore,
42    &queue_context
43  );
44
45  if ( the_semaphore->named ) {
46    /* Undefined operation on a named semaphore */
47    _CORE_semaphore_Release( &the_semaphore->Semaphore, &queue_context );
48    _Objects_Allocator_unlock();
49    rtems_set_errno_and_return_minus_one( EINVAL );
50  }
51
52  _POSIX_Semaphore_Delete( the_semaphore, &queue_context );
53
54  _Objects_Allocator_unlock();
55  return 0;
56}
Note: See TracBrowser for help on using the repository browser.