source: rtems/c/src/exec/rtems/headers/mp.h @ 50cf94da

4.104.114.84.95
Last change on this file since 50cf94da was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  mp.h
2 *
3 *  This include file contains all the constants and structures associated
4 *  with the Multiprocessing Manager.
5 *
6 *  COPYRIGHT (c) 1989-1998.
7 *  On-Line Applications Research Corporation (OAR).
8 *  Copyright assigned to U.S. Government, 1994.
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  $Id$
15 */
16
17#ifndef __RTEMS_MP_h
18#define __RTEMS_MP_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24/*
25 *
26 *  _Multiprocessing_Manager_initialization
27 *
28 *  DESCRIPTION:
29 *
30 *  This routine performs the initialization necessary for this manager.
31 */
32
33void _Multiprocessing_Manager_initialization ( void );
34
35/*
36 *
37 *  rtems_multiprocessing_announce
38 *
39 *  DESCRIPTION:
40 *
41 *  This routine implements the MULTIPROCESSING_ANNOUNCE directive.
42 *  It is invoked by the MPCI layer to indicate that an MPCI packet
43 *  has been received.
44 */
45
46void rtems_multiprocessing_announce ( void );
47
48#ifdef __cplusplus
49}
50#endif
51
52#endif
53/*  end of include file */
Note: See TracBrowser for help on using the repository browser.