source: rtems/cpukit/score/src/coresemsurrender.c @ 2d7ae960

4.115
Last change on this file since 2d7ae960 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 2.0 KB
Line 
1/*
2 *  CORE Semaphore Handler
3 *
4 *  DESCRIPTION:
5 *
6 *  This package is the implementation of the CORE Semaphore Handler.
7 *  This core object utilizes standard Dijkstra counting semaphores to provide
8 *  synchronization and mutual exclusion capabilities.
9 *
10 *  COPYRIGHT (c) 1989-1999.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 */
17
18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/system.h>
23#include <rtems/score/isr.h>
24#include <rtems/score/coresem.h>
25#include <rtems/score/states.h>
26#include <rtems/score/thread.h>
27#include <rtems/score/threadq.h>
28
29/*
30 *  _CORE_semaphore_Surrender
31 *
32 *  Input parameters:
33 *    the_semaphore            - the semaphore to be flushed
34 *    id                       - id of parent semaphore
35 *    api_semaphore_mp_support - api dependent MP support actions
36 *
37 *  Output parameters:
38 *    CORE_SEMAPHORE_STATUS_SUCCESSFUL - if successful
39 *    core error code                  - if unsuccessful
40 *
41 *  Output parameters:
42 */
43
44CORE_semaphore_Status _CORE_semaphore_Surrender(
45  CORE_semaphore_Control                *the_semaphore,
46  Objects_Id                             id,
47  CORE_semaphore_API_mp_support_callout  api_semaphore_mp_support
48)
49{
50  Thread_Control *the_thread;
51  ISR_Level       level;
52  CORE_semaphore_Status status;
53
54  status = CORE_SEMAPHORE_STATUS_SUCCESSFUL;
55
56  if ( (the_thread = _Thread_queue_Dequeue(&the_semaphore->Wait_queue)) ) {
57
58#if defined(RTEMS_MULTIPROCESSING)
59    if ( !_Objects_Is_local_id( the_thread->Object.id ) )
60      (*api_semaphore_mp_support) ( the_thread, id );
61#endif
62
63  } else {
64    _ISR_Disable( level );
65      if ( the_semaphore->count < the_semaphore->Attributes.maximum_count )
66        the_semaphore->count += 1;
67      else
68        status = CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED;
69    _ISR_Enable( level );
70  }
71
72  return status;
73}
Note: See TracBrowser for help on using the repository browser.