source: rtems/cpukit/posix/src/prwlockrdlock.c @ 1d572eba

5
Last change on this file since 1d572eba was c3105894, checked in by Sebastian Huber <sebastian.huber@…>, on 10/19/17 at 11:47:57

score: Move thread queue timeout handling

Update #3117.
Update #3182.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 * @file
3 *
4 * @brief Obtain a Read Lock on a RWLock Instance
5 * @ingroup POSIXAPI
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/posix/rwlockimpl.h>
22#include <rtems/posix/posixapi.h>
23
24int pthread_rwlock_rdlock(
25  pthread_rwlock_t  *rwlock
26)
27{
28  POSIX_RWLock_Control *the_rwlock;
29  Thread_queue_Context  queue_context;
30  Status_Control        status;
31
32  the_rwlock = _POSIX_RWLock_Get( rwlock );
33  POSIX_RWLOCK_VALIDATE_OBJECT( the_rwlock );
34
35  _Thread_queue_Context_initialize( &queue_context );
36  _Thread_queue_Context_set_enqueue_do_nothing_extra( &queue_context );
37  status = _CORE_RWLock_Seize_for_reading(
38    &the_rwlock->RWLock,
39    true,                 /* we are willing to wait forever */
40    &queue_context
41  );
42  return _POSIX_Get_error( status );
43}
Note: See TracBrowser for help on using the repository browser.