source: rtems/cpukit/score/src/coremutexflush.c @ a85d8ec

4.104.114.84.95
Last change on this file since a85d8ec was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
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 *  $Id$
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
40void _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}
Note: See TracBrowser for help on using the repository browser.