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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [score/] [src/] [coremutexflush.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
 *  Mutex Handler
3
 *
4
 *  DESCRIPTION:
5
 *
6
 *  This package is the implementation of the Mutex Handler.
7
 *  This handler provides synchronization and mutual exclusion capabilities.
8
 *
9
 *  COPYRIGHT (c) 1989-1999.
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.OARcorp.com/rtems/license.html.
15
 *
16
 *  coremutexflush.c,v 1.2 1999/11/17 17:50:38 joel Exp
17
 */
18
 
19
#include <rtems/system.h>
20
#include <rtems/score/isr.h>
21
#include <rtems/score/coremutex.h>
22
#include <rtems/score/states.h>
23
#include <rtems/score/thread.h>
24
#include <rtems/score/threadq.h>
25
 
26
/*PAGE
27
 *
28
 *  _CORE_mutex_Flush
29
 *
30
 *  This function a flushes the mutex's task wait queue.
31
 *
32
 *  Input parameters:
33
 *    the_mutex              - the mutex to be flushed
34
 *    remote_extract_callout - function to invoke remotely
35
 *    status                 - status to pass to thread
36
 *
37
 *  Output parameters:  NONE
38
 */
39
 
40
void _CORE_mutex_Flush(
41
  CORE_mutex_Control         *the_mutex,
42
  Thread_queue_Flush_callout  remote_extract_callout,
43
  unsigned32                  status
44
)
45
{
46
  _Thread_queue_Flush(
47
    &the_mutex->Wait_queue,
48
    remote_extract_callout,
49
    status
50
  );
51
}

powered by: WebSVN 2.1.0

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