source: rtems/cpukit/rtems/src/mp.c @ 811804fe

4.104.114.84.95
Last change on this file since 811804fe 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: 731 bytes
Line 
1/*
2 *  Multiprocessing Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1998.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <rtems/system.h>
17#include <rtems/rtems/status.h>
18#include <rtems/rtems/mp.h>
19#include <rtems/score/mpci.h>
20
21/*PAGE
22 *
23 *  _Multiprocessing_Manager_initialization
24 *
25 */
26
27void _Multiprocessing_Manager_initialization ( void )
28{
29}
30
31/*PAGE
32 *
33 *  rtems_multiprocessing_announce
34 *
35 */
36
37void rtems_multiprocessing_announce ( void )
38{
39  _MPCI_Announce();
40}
41
42/* end of file */
Note: See TracBrowser for help on using the repository browser.