source: rtems/cpukit/score/src/coremutexsurrender.c @ 54cf0e34

4.115
Last change on this file since 54cf0e34 was bdf23b6c, checked in by Joel Sherrill <joel.sherrill@…>, on 03/10/15 at 17:39:59

cpukit: Remove old DESCRIPTION: in comments

These were remnants of pre-Doxygen comment style.

  • Property mode set to 100644
File size: 6.3 KB
Line 
1/**
2 * @file
3 *
4 * @brief Surrender the Mutex
5 * @ingroup ScoreMutex
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2006.
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/system.h>
22#include <rtems/score/isr.h>
23#include <rtems/score/coremuteximpl.h>
24#include <rtems/score/thread.h>
25
26#ifdef __RTEMS_STRICT_ORDER_MUTEX__
27  static inline void _CORE_mutex_Push_priority(
28    CORE_mutex_Control *mutex,
29    Thread_Control *thread
30  )
31  {
32    _Chain_Prepend_unprotected(
33      &thread->lock_mutex,
34      &mutex->queue.lock_queue
35    );
36    mutex->queue.priority_before = thread->current_priority;
37  }
38
39  static inline CORE_mutex_Status _CORE_mutex_Pop_priority(
40    CORE_mutex_Control *mutex,
41    Thread_Control *holder
42  )
43  {
44    /*
45     *  Check whether the holder release the mutex in LIFO order if not return
46     *  error code.
47     */
48    if ( _Chain_First( &holder->lock_mutex ) != &mutex->queue.lock_queue ) {
49      mutex->nest_count++;
50
51      return CORE_MUTEX_RELEASE_NOT_ORDER;
52    }
53
54    /*
55     *  This pops the first node from the list.
56     */
57    _Chain_Get_first_unprotected( &holder->lock_mutex );
58
59    if ( mutex->queue.priority_before != holder->current_priority )
60      _Thread_Change_priority( holder, mutex->queue.priority_before, true );
61
62    return CORE_MUTEX_STATUS_SUCCESSFUL;
63  }
64#else
65  #define _CORE_mutex_Push_priority( mutex, thread ) ((void) 0)
66
67  #define _CORE_mutex_Pop_priority( mutex, thread ) \
68    CORE_MUTEX_STATUS_SUCCESSFUL
69#endif
70
71/*
72 *  _CORE_mutex_Surrender
73 *
74 *  This routine frees a unit to the mutex.  If a task was blocked waiting for
75 *  a unit from this mutex, then that task will be readied and the unit
76 *  given to that task.  Otherwise, the unit will be returned to the mutex.
77 *
78 *  Input parameters:
79 *    the_mutex            - the mutex to be flushed
80 *    id                   - id of parent mutex
81 *    api_mutex_mp_support - api dependent MP support actions
82 *
83 *  Output parameters:
84 *    CORE_MUTEX_STATUS_SUCCESSFUL - if successful
85 *    core error code              - if unsuccessful
86 */
87
88CORE_mutex_Status _CORE_mutex_Surrender(
89  CORE_mutex_Control                *the_mutex,
90#if defined(RTEMS_MULTIPROCESSING)
91  Objects_Id                         id,
92  CORE_mutex_API_mp_support_callout  api_mutex_mp_support
93#else
94  Objects_Id                         id __attribute__((unused)),
95  CORE_mutex_API_mp_support_callout  api_mutex_mp_support __attribute__((unused))
96#endif
97)
98{
99  Thread_Control *the_thread;
100  Thread_Control *holder;
101
102  holder = the_mutex->holder;
103
104  /*
105   *  The following code allows a thread (or ISR) other than the thread
106   *  which acquired the mutex to release that mutex.  This is only
107   *  allowed when the mutex in quetion is FIFO or simple Priority
108   *  discipline.  But Priority Ceiling or Priority Inheritance mutexes
109   *  must be released by the thread which acquired them.
110   */
111
112  if ( the_mutex->Attributes.only_owner_release ) {
113    if ( !_Thread_Is_executing( holder ) )
114      return CORE_MUTEX_STATUS_NOT_OWNER_OF_RESOURCE;
115  }
116
117  /* XXX already unlocked -- not right status */
118
119  if ( !the_mutex->nest_count )
120    return CORE_MUTEX_STATUS_SUCCESSFUL;
121
122  the_mutex->nest_count--;
123
124  if ( the_mutex->nest_count != 0 ) {
125    /*
126     *  All error checking is on the locking side, so if the lock was
127     *  allowed to acquired multiple times, then we should just deal with
128     *  that.  The RTEMS_DEBUG is just a validation.
129     */
130    #if defined(RTEMS_DEBUG)
131      switch ( the_mutex->Attributes.lock_nesting_behavior ) {
132        case CORE_MUTEX_NESTING_ACQUIRES:
133          return CORE_MUTEX_STATUS_SUCCESSFUL;
134        #if defined(RTEMS_POSIX_API)
135          case CORE_MUTEX_NESTING_IS_ERROR:
136            /* should never occur */
137            return CORE_MUTEX_STATUS_NESTING_NOT_ALLOWED;
138        #endif
139        case CORE_MUTEX_NESTING_BLOCKS:
140          /* Currently no API exercises this behavior. */
141          break;
142      }
143    #else
144      /* must be CORE_MUTEX_NESTING_ACQUIRES or we wouldn't be here */
145      return CORE_MUTEX_STATUS_SUCCESSFUL;
146    #endif
147  }
148
149  /*
150   *  Formally release the mutex before possibly transferring it to a
151   *  blocked thread.
152   */
153  if ( _CORE_mutex_Is_inherit_priority( &the_mutex->Attributes ) ||
154       _CORE_mutex_Is_priority_ceiling( &the_mutex->Attributes ) ) {
155    CORE_mutex_Status pop_status =
156      _CORE_mutex_Pop_priority( the_mutex, holder );
157
158    if ( pop_status != CORE_MUTEX_STATUS_SUCCESSFUL )
159      return pop_status;
160
161    holder->resource_count--;
162
163    /*
164     *  Whether or not someone is waiting for the mutex, an
165     *  inherited priority must be lowered if this is the last
166     *  mutex (i.e. resource) this task has.
167     */
168    if ( !_Thread_Owns_resources( holder ) &&
169         holder->real_priority != holder->current_priority ) {
170      _Thread_Change_priority( holder, holder->real_priority, true );
171    }
172  }
173  the_mutex->holder = NULL;
174
175  /*
176   *  Now we check if another thread was waiting for this mutex.  If so,
177   *  transfer the mutex to that thread.
178   */
179  if ( ( the_thread = _Thread_queue_Dequeue( &the_mutex->Wait_queue ) ) ) {
180
181#if defined(RTEMS_MULTIPROCESSING)
182    if ( !_Objects_Is_local_id( the_thread->Object.id ) ) {
183
184      the_mutex->holder     = NULL;
185      the_mutex->nest_count = 1;
186
187      ( *api_mutex_mp_support)( the_thread, id );
188
189    } else
190#endif
191    {
192
193      the_mutex->holder     = the_thread;
194      the_mutex->nest_count = 1;
195
196      switch ( the_mutex->Attributes.discipline ) {
197        case CORE_MUTEX_DISCIPLINES_FIFO:
198        case CORE_MUTEX_DISCIPLINES_PRIORITY:
199          break;
200        case CORE_MUTEX_DISCIPLINES_PRIORITY_INHERIT:
201          _CORE_mutex_Push_priority( the_mutex, the_thread );
202          the_thread->resource_count++;
203          break;
204        case CORE_MUTEX_DISCIPLINES_PRIORITY_CEILING:
205          _CORE_mutex_Push_priority( the_mutex, the_thread );
206          the_thread->resource_count++;
207          if (the_mutex->Attributes.priority_ceiling <
208              the_thread->current_priority){
209              _Thread_Change_priority(
210                the_thread,
211                the_mutex->Attributes.priority_ceiling,
212                false
213              );
214          }
215          break;
216      }
217    }
218  }
219
220  return CORE_MUTEX_STATUS_SUCCESSFUL;
221}
Note: See TracBrowser for help on using the repository browser.