summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/msg.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-01-10 15:04:42 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-01-10 15:04:42 +0000
commit6b384516b9c222db1e67ba1cd3e8d757aa4a68b4 (patch)
tree44addd9a2785785618f923f8e9c6f856fa320459 /cpukit/rtems/src/msg.c
parent2003-01-10 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-6b384516b9c222db1e67ba1cd3e8d757aa4a68b4.tar.bz2
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.
Diffstat (limited to 'cpukit/rtems/src/msg.c')
-rw-r--r--cpukit/rtems/src/msg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/src/msg.c b/cpukit/rtems/src/msg.c
index 62529b6dd2..eda8d91dfc 100644
--- a/cpukit/rtems/src/msg.c
+++ b/cpukit/rtems/src/msg.c
@@ -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
);