source: rtems/cpukit/rtems/src/mp.c @ ebe61382

4.104.114.95
Last change on this file since ebe61382 was 1095ec1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/18/05 at 09:03:45

Include config.h.

  • Property mode set to 100644
File size: 723 bytes
Line 
1/*
2 *  Multiprocessing Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <rtems/system.h>
20#include <rtems/rtems/status.h>
21#include <rtems/rtems/mp.h>
22#include <rtems/score/mpci.h>
23
24/*PAGE
25 *
26 *  _Multiprocessing_Manager_initialization
27 *
28 */
29
30void _Multiprocessing_Manager_initialization ( void )
31{
32}
33
34/*PAGE
35 *
36 *  rtems_multiprocessing_announce
37 *
38 */
39
40void rtems_multiprocessing_announce ( void )
41{
42  _MPCI_Announce();
43}
44
45/* end of file */
Note: See TracBrowser for help on using the repository browser.