source: rtems/cpukit/score/src/coremsgflush.c @ 6af81435

4.104.114.84.95
Last change on this file since 6af81435 was 82cb78d8, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 21:45:15

Split core message queue and watchdog handler objects into separate files.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*
2 *  CORE Message Queue Handler
3 *
4 *  DESCRIPTION:
5 *
6 *  This package is the implementation of the CORE Message Queue Handler.
7 *  This core object provides task synchronization and communication functions
8 *  via messages passed to queue objects.
9 *
10 *  COPYRIGHT (c) 1989-1998.
11 *  On-Line Applications Research Corporation (OAR).
12 *  Copyright assigned to U.S. Government, 1994.
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.OARcorp.com/rtems/license.html.
17 *
18 *  $Id$
19 */
20
21#include <rtems/system.h>
22#include <rtems/score/chain.h>
23#include <rtems/score/isr.h>
24#include <rtems/score/object.h>
25#include <rtems/score/coremsg.h>
26#include <rtems/score/states.h>
27#include <rtems/score/thread.h>
28#include <rtems/score/wkspace.h>
29#if defined(RTEMS_MULTIPROCESSING)
30#include <rtems/score/mpci.h>
31#endif
32
33/*PAGE
34 *
35 *  _CORE_message_queue_Flush
36 *
37 *  This function flushes the message_queue's task wait queue.  The number
38 *  of messages flushed from the queue is returned.
39 *
40 *  Input parameters:
41 *    the_message_queue - the message_queue to be flushed
42 *
43 *  Output parameters:
44 *    returns - the number of messages flushed from the queue
45 */
46 
47unsigned32 _CORE_message_queue_Flush(
48  CORE_message_queue_Control *the_message_queue
49)
50{
51  if ( the_message_queue->number_of_pending_messages != 0 )
52    return _CORE_message_queue_Flush_support( the_message_queue );
53  else
54    return 0;
55}
56
Note: See TracBrowser for help on using the repository browser.