source: rtems/c/src/exec/rtems/headers/mp.h @ 88d594a

4.104.114.84.95
Last change on this file since 88d594a was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*  mp.h
2 *
3 *  This include file contains all the constants and structures associated
4 *  with the Multiprocessing Manager.
5 *
6 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
7 *  On-Line Applications Research Corporation (OAR).
8 *  All rights assigned to U.S. Government, 1994.
9 *
10 *  This material may be reproduced by or for the U.S. Government pursuant
11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
12 *  notice must appear in all copies of this file and its derivatives.
13 *
14 *  $Id$
15 */
16
17#ifndef __RTEMS_MP_h
18#define __RTEMS_MP_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24/*
25 *
26 *  _Multiprocessing_Manager_initialization
27 *
28 *  DESCRIPTION:
29 *
30 *  This routine performs the initialization necessary for this manager.
31 */
32
33void _Multiprocessing_Manager_initialization ( void );
34
35/*
36 *
37 *  rtems_multiprocessing_announce
38 *
39 *  DESCRIPTION:
40 *
41 *  This routine implements the MULTIPROCESSING_ANNOUNCE directive.
42 *  It is invoked by the MPCI layer to indicate that an MPCI packet
43 *  has been received.
44 */
45
46void rtems_multiprocessing_announce ( void );
47
48/*
49 *
50 *  _Multiprocessing_Receive_server
51 *
52 *  DESCRIPTION:
53 *
54 *  This routine is a server thread which processes remote requests
55 *  from other nodes.
56 */
57
58Thread _Multiprocessing_Receive_server (
59  Thread_Argument ignored
60);
61
62#ifdef __cplusplus
63}
64#endif
65
66#endif
67/*  end of include file */
Note: See TracBrowser for help on using the repository browser.