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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [score/] [src/] [coresemflush.c] - Blame information for rev 1780

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
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
 *  coresemflush.c,v 1.2 1999/11/17 17:50:38 joel 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_Flush
33
 *
34
 *  This function a flushes the semaphore's task wait queue.
35
 *
36
 *  Input parameters:
37
 *    the_semaphore          - the semaphore to be flushed
38
 *    remote_extract_callout - function to invoke remotely
39
 *    status                 - status to pass to thread
40
 *
41
 *  Output parameters:  NONE
42
 */
43
 
44
void _CORE_semaphore_Flush(
45
  CORE_semaphore_Control     *the_semaphore,
46
  Thread_queue_Flush_callout  remote_extract_callout,
47
  unsigned32                  status
48
)
49
{
50
 
51
  _Thread_queue_Flush(
52
    &the_semaphore->Wait_queue,
53
    remote_extract_callout,
54
    status
55
  );
56
 
57
}

powered by: WebSVN 2.1.0

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