source: rtems/c/src/exec/rtems/optman/no-mp.c @ d08b1c75

4.104.114.84.95
Last change on this file since d08b1c75 was d08b1c75, checked in by Joel Sherrill <joel.sherrill@…>, on 03/21/96 at 20:19:03

update to reflect internal threads reorganization

  • Property mode set to 100644
File size: 2.3 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_Create_server( void )
46{
47}
48
49void _MPCI_Initialization ( void )
50{
51}
52
53void _MPCI_Register_packet_processor(
54  Objects_Classes        the_class,
55  MPCI_Packet_processor  the_packet_processor
56 
57)
58{
59}
60 
61MP_packet_Prefix *_MPCI_Get_packet ( void )
62{
63  return NULL;
64}
65
66void _MPCI_Return_packet (
67  MP_packet_Prefix   *the_packet
68)
69{
70}
71
72void _MPCI_Send_process_packet (
73  unsigned32          destination,
74  MP_packet_Prefix   *the_packet
75)
76{
77}
78
79unsigned32 _MPCI_Send_request_packet (
80  unsigned32          destination,
81  MP_packet_Prefix   *the_packet,
82  States_Control      extra_state
83)
84{
85  return 0;
86}
87
88void _MPCI_Send_response_packet (
89  unsigned32          destination,
90  MP_packet_Prefix   *the_packet
91)
92{
93}
94
95MP_packet_Prefix  *_MPCI_Receive_packet ( void )
96{
97  return NULL;
98}
99
100Thread_Control *_MPCI_Process_response (
101  MP_packet_Prefix  *the_packet
102)
103{
104  return NULL;
105}
106
107Thread _MPCI_Receive_server(
108  unsigned32 ignore
109)
110{
111}
112
113void _MPCI_Announce ( void )
114{
115}
116
117
118void _MPCI_Internal_packets_Send_process_packet (
119   MPCI_Internal_Remote_operations operation
120)
121{
122}
123 
124void _MPCI_Internal_packets_Process_packet (
125  MP_packet_Prefix  *the_packet_prefix
126)
127{
128}
129 
130MPCI_Internal_packet *_MPCI_Internal_packets_Get_packet ( void )
131{
132  return NULL;
133}
134
135/* end of file */
Note: See TracBrowser for help on using the repository browser.