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

4.104.114.84.95
Last change on this file since 4ca27cf 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.8 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/config.h>
18#include <rtems/cpu.h>
19#include <rtems/event.h>
20#include <rtems/fatal.h>
21#include <rtems/intthrd.h>
22#include <rtems/message.h>
23#include <rtems/mp.h>
24#include <rtems/mpci.h>
25#include <rtems/mppkt.h>
26#include <rtems/part.h>
27#include <rtems/sem.h>
28#include <rtems/signal.h>
29#include <rtems/states.h>
30#include <rtems/tasks.h>
31#include <rtems/thread.h>
32#include <rtems/threadq.h>
33#include <rtems/watchdog.h>
34
35void _Multiprocessing_Manager_initialization ( void )
36{
37}
38
39void rtems_multiprocessing_announce ( void )
40{
41}
42
43Thread _Multiprocessing_Receive_server (
44  Thread_Argument ignored
45)
46{
47}
48
49void _MPCI_Handler_initialization ( void )
50{
51}
52
53void _MPCI_Initialization ( void )
54{
55}
56
57rtems_packet_prefix *_MPCI_Get_packet ( void )
58{
59  return NULL;
60}
61
62void _MPCI_Return_packet (
63  rtems_packet_prefix   *the_packet
64)
65{
66}
67
68void _MPCI_Send_process_packet (
69  unsigned32          destination,
70  rtems_packet_prefix   *the_packet
71)
72{
73}
74
75rtems_status_code _MPCI_Send_request_packet (
76  unsigned32          destination,
77  rtems_packet_prefix   *the_packet,
78  States_Control      extra_state
79)
80{
81  return( RTEMS_NOT_CONFIGURED );
82}
83
84void _MPCI_Send_response_packet (
85  unsigned32          destination,
86  rtems_packet_prefix   *the_packet
87)
88{
89}
90
91rtems_packet_prefix  *_MPCI_Receive_packet ( void )
92{
93  return NULL;
94}
95
96Thread_Control *_MPCI_Process_response (
97  rtems_packet_prefix  *the_packet
98)
99{
100  return NULL;
101}
Note: See TracBrowser for help on using the repository browser.