source: rtems/cpukit/score/src/coresemsurrender.c @ d686006

4.104.114.84.95
Last change on this file since d686006 was d686006, checked in by Joel Sherrill <joel.sherrill@…>, on 11/01/04 at 15:37:30

2004-11-01 Joel Sherrill <joel@…>

  • score/src/coresemsurrender.c, score/src/objectnametoid.c: All _Objects_Is_Local... should only be called if multiprocessing is enabled.
  • 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 *  $Id$
18 */
19
20#include <rtems/system.h>
21#include <rtems/score/isr.h>
22#include <rtems/score/coresem.h>
23#include <rtems/score/states.h>
24#include <rtems/score/thread.h>
25#include <rtems/score/threadq.h>
26#if defined(RTEMS_MULTIPROCESSING)
27#include <rtems/score/mpci.h>
28#endif
29
30/*PAGE
31 *
32 *  _CORE_semaphore_Surrender
33 *
34 *  Input parameters:
35 *    the_semaphore            - the semaphore to be flushed
36 *    id                       - id of parent semaphore
37 *    api_semaphore_mp_support - api dependent MP support actions
38 *
39 *  Output parameters:
40 *    CORE_SEMAPHORE_STATUS_SUCCESSFUL - if successful
41 *    core error code                  - if unsuccessful
42 *
43 *  Output parameters:
44 */
45
46CORE_semaphore_Status _CORE_semaphore_Surrender(
47  CORE_semaphore_Control                *the_semaphore,
48  Objects_Id                             id,
49  CORE_semaphore_API_mp_support_callout  api_semaphore_mp_support
50)
51{
52  Thread_Control *the_thread;
53  ISR_Level       level;
54  CORE_semaphore_Status status;
55
56  status = CORE_SEMAPHORE_STATUS_SUCCESSFUL;
57
58  if ( (the_thread = _Thread_queue_Dequeue(&the_semaphore->Wait_queue)) ) {
59
60#if defined(RTEMS_MULTIPROCESSING)
61    if ( !_Objects_Is_local_id( the_thread->Object.id ) )
62      (*api_semaphore_mp_support) ( the_thread, id );
63#endif
64
65  } else {
66    _ISR_Disable( level );
67      if ( the_semaphore->count < the_semaphore->Attributes.maximum_count )
68        the_semaphore->count += 1;
69      else
70        status = CORE_SEMAPHORE_MAXIMUM_COUNT_EXCEEDED;
71    _ISR_Enable( level );
72  }
73
74  return status;
75}
Note: See TracBrowser for help on using the repository browser.