OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [score/] [src/] [coresem.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
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.OARcorp.com/rtems/license.html.
16
 *
17
 *  $Id: coresem.c,v 1.2 2001-09-27 11:59:34 chris Exp $
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_Initialize
33
 *
34
 *  This function initialize a semaphore and sets the initial value based
35
 *  on the given count.
36
 *
37
 *  Input parameters:
38
 *    the_semaphore            - the semaphore control block to initialize
39
 *    the_class                - the API class of the object
40
 *    the_semaphore_attributes - the attributes specified at create time
41
 *    initial_value            - semaphore's initial value
42
 *    proxy_extract_callout    - MP specific extract callout
43
 *
44
 *  Output parameters:  NONE
45
 */
46
 
47
void _CORE_semaphore_Initialize(
48
  CORE_semaphore_Control       *the_semaphore,
49
  Objects_Classes               the_class,
50
  CORE_semaphore_Attributes    *the_semaphore_attributes,
51
  unsigned32                    initial_value,
52
  Thread_queue_Extract_callout  proxy_extract_callout
53
)
54
{
55
 
56
  the_semaphore->Attributes = *the_semaphore_attributes;
57
  the_semaphore->count      = initial_value;
58
 
59
  _Thread_queue_Initialize(
60
    &the_semaphore->Wait_queue,
61
    the_class,
62
    _CORE_semaphore_Is_priority( the_semaphore_attributes ) ?
63
              THREAD_QUEUE_DISCIPLINE_PRIORITY : THREAD_QUEUE_DISCIPLINE_FIFO,
64
    STATES_WAITING_FOR_SEMAPHORE,
65
    proxy_extract_callout,
66
    CORE_SEMAPHORE_TIMEOUT
67
  );
68
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.