2003-01-10 Joel Sherrill <joel@OARcorp.com>

* src/msg.c, src/part.c, src/sem.c, src/tasks.c: Correct object
	class control structure initialization for multiprocessing
	configurations.
This commit is contained in:
Joel Sherrill
2003-01-10 15:04:42 +00:00
parent eb7cddd3cf
commit 6b384516b9
5 changed files with 13 additions and 7 deletions

View File

@@ -1,3 +1,9 @@
2003-01-10 Joel Sherrill <joel@OARcorp.com>
* src/msg.c, src/part.c, src/sem.c, src/tasks.c: Correct object
class control structure initialization for multiprocessing
configurations.
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Don't create $ARCH as side-effect of compilation.

View File

@@ -58,8 +58,8 @@ void _Message_queue_Manager_initialization(
RTEMS_MAXIMUM_NAME_LENGTH /* maximum length of each object's name */
#if defined(RTEMS_MULTIPROCESSING)
,
FALSE, /* TRUE if this is a global object class */
NULL /* Proxy extraction support callout */
TRUE, /* TRUE if this is a global object class */
_Message_queue_MP_Send_extract_proxy /* Proxy extraction support callout */
#endif
);

View File

@@ -48,8 +48,8 @@ void _Partition_Manager_initialization(
RTEMS_MAXIMUM_NAME_LENGTH /* maximum length of an object name */
#if defined(RTEMS_MULTIPROCESSING)
,
FALSE, /* TRUE if this is a global object class */
NULL /* Proxy extraction support callout */
TRUE, /* TRUE if this is a global object class */
_Partition_MP_Send_extract_proxy /* Proxy extraction support callout */
#endif
);

View File

@@ -71,8 +71,8 @@ void _Semaphore_Manager_initialization(
RTEMS_MAXIMUM_NAME_LENGTH /* maximum length of an object name */
#if defined(RTEMS_MULTIPROCESSING)
,
FALSE, /* TRUE if this is a global object class */
NULL /* Proxy extraction support callout */
TRUE, /* TRUE if this is a global object class */
_Semaphore_MP_Send_extract_proxy /* Proxy extraction support callout */
#endif
);

View File

@@ -258,7 +258,7 @@ void _RTEMS_tasks_Manager_initialization(
RTEMS_MAXIMUM_NAME_LENGTH /* maximum length of an object name */
#if defined(RTEMS_MULTIPROCESSING)
,
FALSE, /* TRUE if this is a global object class */
TRUE, /* TRUE if this is a global object class */
NULL /* Proxy extraction support callout */
#endif
);