forked from Imagelibrary/rtems
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:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user