source: rtems/cpukit/score/src/coresemflush.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
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.rtems.com/license/LICENSE.
16 */
17
18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/system.h>
23#include <rtems/score/isr.h>
24#include <rtems/score/coresem.h>
25#include <rtems/score/states.h>
26#include <rtems/score/thread.h>
27#include <rtems/score/threadq.h>
28
29/*
30 *  _CORE_semaphore_Flush
31 *
32 *  This function a flushes the semaphore's task wait queue.
33 *
34 *  Input parameters:
35 *    the_semaphore          - the semaphore to be flushed
36 *    remote_extract_callout - function to invoke remotely
37 *    status                 - status to pass to thread
38 *
39 *  Output parameters:  NONE
40 */
41
42void _CORE_semaphore_Flush(
43  CORE_semaphore_Control     *the_semaphore,
44  Thread_queue_Flush_callout  remote_extract_callout,
45  uint32_t                    status
46)
47{
48
49  _Thread_queue_Flush(
50    &the_semaphore->Wait_queue,
51    remote_extract_callout,
52    status
53  );
54
55}
Note: See TracBrowser for help on using the repository browser.