From 6381642a19354cf88c1bf1d20fe3ca75ad8d5d5c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 12 Jun 2003 15:36:14 +0000 Subject: 2003-06-12 Joel Sherrill * include/rtems/rtems/msgmp.h, include/rtems/rtems/partmp.h, include/rtems/rtems/regionmp.h, include/rtems/rtems/semmp.h, src/msgmp.c, src/partmp.c, src/regionmp.c, src/semmp.c: Removed warnings. --- cpukit/rtems/ChangeLog | 7 +++++++ cpukit/rtems/include/rtems/rtems/msgmp.h | 2 +- cpukit/rtems/include/rtems/rtems/partmp.h | 2 +- cpukit/rtems/include/rtems/rtems/regionmp.h | 2 +- cpukit/rtems/include/rtems/rtems/semmp.h | 2 +- cpukit/rtems/src/msgmp.c | 4 +++- cpukit/rtems/src/partmp.c | 4 +++- cpukit/rtems/src/regionmp.c | 4 +++- cpukit/rtems/src/semmp.c | 4 +++- 9 files changed, 23 insertions(+), 8 deletions(-) diff --git a/cpukit/rtems/ChangeLog b/cpukit/rtems/ChangeLog index ce36f6c230..0232f6964f 100644 --- a/cpukit/rtems/ChangeLog +++ b/cpukit/rtems/ChangeLog @@ -1,3 +1,10 @@ +2003-06-12 Joel Sherrill + + * include/rtems/rtems/msgmp.h, include/rtems/rtems/partmp.h, + include/rtems/rtems/regionmp.h, include/rtems/rtems/semmp.h, + src/msgmp.c, src/partmp.c, src/regionmp.c, src/semmp.c: Removed + warnings. + 2003-05-30 Ralf Corsepius * include/rtems/rtems/types.h: Include stdint.h. diff --git a/cpukit/rtems/include/rtems/rtems/msgmp.h b/cpukit/rtems/include/rtems/rtems/msgmp.h index 19b52bbcc4..075ef515a9 100644 --- a/cpukit/rtems/include/rtems/rtems/msgmp.h +++ b/cpukit/rtems/include/rtems/rtems/msgmp.h @@ -155,7 +155,7 @@ void _Message_queue_MP_Send_object_was_deleted ( */ void _Message_queue_MP_Send_extract_proxy ( - Thread_Control *the_thread + void *argument ); /* diff --git a/cpukit/rtems/include/rtems/rtems/partmp.h b/cpukit/rtems/include/rtems/rtems/partmp.h index bec116367c..09ad55e57f 100644 --- a/cpukit/rtems/include/rtems/rtems/partmp.h +++ b/cpukit/rtems/include/rtems/rtems/partmp.h @@ -139,7 +139,7 @@ void _Partition_MP_Process_packet ( */ void _Partition_MP_Send_extract_proxy ( - Thread_Control *the_thread + void *argument ); /* diff --git a/cpukit/rtems/include/rtems/rtems/regionmp.h b/cpukit/rtems/include/rtems/rtems/regionmp.h index 0743f7b057..eb5cfb0bae 100644 --- a/cpukit/rtems/include/rtems/rtems/regionmp.h +++ b/cpukit/rtems/include/rtems/rtems/regionmp.h @@ -144,7 +144,7 @@ void _Region_MP_Process_packet ( */ void _Region_MP_Send_extract_proxy ( - Thread_Control *the_thread + void *argument ); /* diff --git a/cpukit/rtems/include/rtems/rtems/semmp.h b/cpukit/rtems/include/rtems/rtems/semmp.h index e299e33c77..b985f29477 100644 --- a/cpukit/rtems/include/rtems/rtems/semmp.h +++ b/cpukit/rtems/include/rtems/rtems/semmp.h @@ -141,7 +141,7 @@ void _Semaphore_MP_Send_object_was_deleted ( */ void _Semaphore_MP_Send_extract_proxy ( - Thread_Control *the_thread + void *argument ); /* diff --git a/cpukit/rtems/src/msgmp.c b/cpukit/rtems/src/msgmp.c index 6d48ff4955..94f092ffb8 100644 --- a/cpukit/rtems/src/msgmp.c +++ b/cpukit/rtems/src/msgmp.c @@ -453,9 +453,11 @@ void _Message_queue_MP_Send_object_was_deleted ( */ void _Message_queue_MP_Send_extract_proxy ( - Thread_Control *the_thread + void *argument ) { + Thread_Control *the_thread = (Thread_Control *)argument; + _Message_queue_MP_Send_process_packet( MESSAGE_QUEUE_MP_EXTRACT_PROXY, the_thread->Wait.id, diff --git a/cpukit/rtems/src/partmp.c b/cpukit/rtems/src/partmp.c index 88838f86b3..ce6b2b992d 100644 --- a/cpukit/rtems/src/partmp.c +++ b/cpukit/rtems/src/partmp.c @@ -275,9 +275,11 @@ void _Partition_MP_Process_packet ( */ void _Partition_MP_Send_extract_proxy ( - Thread_Control *the_thread + void *argument ) { + Thread_Control *the_thread = (Thread_Control *)argument; + _Partition_MP_Send_process_packet( PARTITION_MP_EXTRACT_PROXY, the_thread->Wait.id, diff --git a/cpukit/rtems/src/regionmp.c b/cpukit/rtems/src/regionmp.c index bd19e43ad0..d69a2c4244 100644 --- a/cpukit/rtems/src/regionmp.c +++ b/cpukit/rtems/src/regionmp.c @@ -284,9 +284,11 @@ void _Region_MP_Process_packet ( */ void _Region_MP_Send_extract_proxy ( - Thread_Control *the_thread + void *argument ) { + Thread_Control *the_thread = (Thread_Control *)argument; + _Region_MP_Send_process_packet( REGION_MP_EXTRACT_PROXY, the_thread->Wait.id, diff --git a/cpukit/rtems/src/semmp.c b/cpukit/rtems/src/semmp.c index f479467bc9..4e039c09ef 100644 --- a/cpukit/rtems/src/semmp.c +++ b/cpukit/rtems/src/semmp.c @@ -281,9 +281,11 @@ void _Semaphore_MP_Send_object_was_deleted ( */ void _Semaphore_MP_Send_extract_proxy ( - Thread_Control *the_thread + void *argument ) { + Thread_Control *the_thread = (Thread_Control *)argument; + _Semaphore_MP_Send_process_packet( SEMAPHORE_MP_EXTRACT_PROXY, the_thread->Wait.id, -- cgit v1.2.3