source: rtems/cpukit/rtems/include/rtems/rtems/mp.h @ 092f142a

4.104.114.84.95
Last change on this file since 092f142a was 092f142a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 05:00:21

New header guard.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 * @file rtems/rtems/mp.h
3 */
4
5/*
6 *  This include file contains all the constants and structures associated
7 *  with the Multiprocessing Manager.
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.rtems.com/license/LICENSE.
15 *
16 *  $Id$
17 */
18
19#ifndef _RTEMS_RTEMS_MP_H
20#define _RTEMS_RTEMS_MP_H
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26/*
27 *
28 *  _Multiprocessing_Manager_initialization
29 *
30 *  DESCRIPTION:
31 *
32 *  This routine performs the initialization necessary for this manager.
33 */
34
35void _Multiprocessing_Manager_initialization ( void );
36
37/*
38 *
39 *  rtems_multiprocessing_announce
40 *
41 *  DESCRIPTION:
42 *
43 *  This routine implements the MULTIPROCESSING_ANNOUNCE directive.
44 *  It is invoked by the MPCI layer to indicate that an MPCI packet
45 *  has been received.
46 */
47
48void rtems_multiprocessing_announce ( void );
49
50#ifdef __cplusplus
51}
52#endif
53
54#endif
55/*  end of include file */
Note: See TracBrowser for help on using the repository browser.