Added --disable-multiprocessing flag and modified a lot of files to make

it work.
This commit is contained in:
Joel Sherrill
1998-11-23 17:38:09 +00:00
parent 967f3aaa0c
commit 97e2729d1a
154 changed files with 1593 additions and 494 deletions
+6
View File
@@ -43,7 +43,9 @@ typedef void *posix_api_configuration_table;
#include <rtems/extension.h>
#include <rtems/io.h>
#if defined(RTEMS_MULTIPROCESSING)
#include <rtems/score/mpci.h>
#endif
/*
* The following records define the Multiprocessor Configuration
@@ -57,7 +59,11 @@ typedef struct {
unsigned32 maximum_nodes; /* maximum # nodes in system */
unsigned32 maximum_global_objects; /* maximum # global objects */
unsigned32 maximum_proxies; /* maximum # proxies */
#if defined(RTEMS_MULTIPROCESSING)
MPCI_Control *User_mpci_table; /* pointer to MPCI table */
#else
void *User_mpci_table; /* pointer to MPCI table */
#endif
} rtems_multiprocessing_table;
/*