source: rtems/cpukit/rtems/src/mp.c @ 52a0641

4.104.114.84.95
Last change on this file since 52a0641 was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

  • Property mode set to 100644
File size: 814 bytes
Line 
1/*
2 *  Multiprocessing Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
6 *  On-Line Applications Research Corporation (OAR).
7 *  All rights assigned to U.S. Government, 1994.
8 *
9 *  This material may be reproduced by or for the U.S. Government pursuant
10 *  to the copyright license under the clause at DFARS 252.227-7013.  This
11 *  notice must appear in all copies of this file and its derivatives.
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.