source: rtems/cpukit/rtems/src/barrierwait.c @ dce48791

5
Last change on this file since dce48791 was dce48791, checked in by Sebastian Huber <sebastian.huber@…>, on 05/23/16 at 11:37:59

score: Add Status_Control for all APIs

Unify the status codes of the Classic and POSIX API to use the new enum
Status_Control. This eliminates the Thread_Control::Wait::timeout_code
field and the timeout parameter of _Thread_queue_Enqueue_critical() and
_MPCI_Send_request_packet(). It gets rid of the status code translation
tables and instead uses simple bit operations to get the status for a
particular API. This enables translation of status code constants at
compile time. Add _Thread_Wait_get_status() to avoid direct access of
thread internal data structures.

  • Property mode set to 100644
File size: 1000 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Barrier Wait
5 *  @ingroup ClassicBarrier
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2007.
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 <rtems/rtems/barrierimpl.h>
22#include <rtems/rtems/statusimpl.h>
23
24THREAD_QUEUE_OBJECT_ASSERT( Barrier_Control, Barrier.Wait_queue );
25
26rtems_status_code rtems_barrier_wait(
27  rtems_id        id,
28  rtems_interval  timeout
29)
30{
31  Barrier_Control      *the_barrier;
32  Thread_queue_Context  queue_context;
33  Status_Control        status;
34
35  the_barrier = _Barrier_Get( id, &queue_context );
36
37  if ( the_barrier == NULL ) {
38    return RTEMS_INVALID_ID;
39  }
40
41  status = _CORE_barrier_Seize(
42    &the_barrier->Barrier,
43    _Thread_Executing,
44    true,
45    timeout,
46    &queue_context
47  );
48  return _Status_Get( status );
49}
Note: See TracBrowser for help on using the repository browser.