source: rtems/cpukit/rtems/include/rtems/rtems/mp.h @ 4b487363

4.104.114.84.95
Last change on this file since 4b487363 was 4b487363, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/02/04 at 09:39:02

2004-10-02 Ralf Corsepius <ralf_corsepiu@…>

  • rtems/include/rtems.h, rtems/include/rtems/rtems/asr.h, rtems/include/rtems/rtems/attr.h, rtems/include/rtems/rtems/cache.h, rtems/include/rtems/rtems/clock.h, rtems/include/rtems/rtems/config.h, rtems/include/rtems/rtems/dpmem.h, rtems/include/rtems/rtems/event.h, rtems/include/rtems/rtems/eventmp.h, rtems/include/rtems/rtems/eventset.h, rtems/include/rtems/rtems/intr.h, rtems/include/rtems/rtems/message.h, rtems/include/rtems/rtems/modes.h, rtems/include/rtems/rtems/mp.h, rtems/include/rtems/rtems/msgmp.h, rtems/include/rtems/rtems/options.h, rtems/include/rtems/rtems/part.h, rtems/include/rtems/rtems/partmp.h, rtems/include/rtems/rtems/ratemon.h, rtems/include/rtems/rtems/region.h, rtems/include/rtems/rtems/regionmp.h, rtems/include/rtems/rtems/rtemsapi.h, rtems/include/rtems/rtems/sem.h, rtems/include/rtems/rtems/semmp.h, rtems/include/rtems/rtems/signal.h, rtems/include/rtems/rtems/signalmp.h, rtems/include/rtems/rtems/status.h, rtems/include/rtems/rtems/support.h, rtems/include/rtems/rtems/taskmp.h, rtems/include/rtems/rtems/tasks.h, rtems/include/rtems/rtems/timer.h, rtems/include/rtems/rtems/types.h: Add doxygen preamble.
  • 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_MP_h
20#define __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.