source: rtems/c/src/optman/rtems/no-mp.c @ 62c4e481

4.104.114.84.95
Last change on this file since 62c4e481 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: 2.0 KB
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/cpu.h>
20#include <rtems/score/interr.h>
21#include <rtems/score/mpci.h>
22#include <rtems/score/mppkt.h>
23#include <rtems/score/states.h>
24#include <rtems/score/thread.h>
25#include <rtems/score/threadq.h>
26#include <rtems/score/tqdata.h>
27#include <rtems/score/watchdog.h>
28#include <rtems/score/sysstate.h>
29
30void _Multiprocessing_Manager_initialization ( void )
31{
32}
33
34void rtems_multiprocessing_announce ( void )
35{
36}
37
38void _MPCI_Handler_initialization(
39  MPCI_Control            *users_mpci_table,
40  unsigned32               timeout_status
41)
42{
43}
44
45void _MPCI_Initialization ( void )
46{
47}
48
49void _MPCI_Register_packet_processor(
50  Objects_Classes        the_class,
51  MPCI_Packet_processor  the_packet_processor
52 
53)
54{
55}
56 
57MP_packet_Prefix *_MPCI_Get_packet ( void )
58{
59  return NULL;
60}
61
62void _MPCI_Return_packet (
63  MP_packet_Prefix   *the_packet
64)
65{
66}
67
68void _MPCI_Send_process_packet (
69  unsigned32          destination,
70  MP_packet_Prefix   *the_packet
71)
72{
73}
74
75unsigned32 _MPCI_Send_request_packet (
76  unsigned32          destination,
77  MP_packet_Prefix   *the_packet,
78  States_Control      extra_state
79)
80{
81  return 0;
82}
83
84void _MPCI_Send_response_packet (
85  unsigned32          destination,
86  MP_packet_Prefix   *the_packet
87)
88{
89}
90
91MP_packet_Prefix  *_MPCI_Receive_packet ( void )
92{
93  return NULL;
94}
95
96Thread_Control *_MPCI_Process_response (
97  MP_packet_Prefix  *the_packet
98)
99{
100  return NULL;
101}
102
103void _MPCI_Receive_server( void )
104{
105}
106
107void _MPCI_Announce ( void )
108{
109}
110
111/* end of file */
Note: See TracBrowser for help on using the repository browser.