summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-03-17 14:32:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-03-17 14:32:53 +0000
commit732b2b3976b9ad44b8766a232709bc74b7c1231d (patch)
tree70f1291b553e809bad227325ba3275beb4e5f90c
parent2005-03-17 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-732b2b3976b9ad44b8766a232709bc74b7c1231d.tar.bz2
2005-03-17 Joel Sherrill <joel@OARcorp.com>
* include/rtems/score/object.h, src/objectinitializeinformation.c: Fix warning.
-rw-r--r--cpukit/score/ChangeLog5
-rw-r--r--cpukit/score/include/rtems/score/object.h4
-rw-r--r--cpukit/score/src/objectinitializeinformation.c4
3 files changed, 9 insertions, 4 deletions
diff --git a/cpukit/score/ChangeLog b/cpukit/score/ChangeLog
index df9b8ae2c9..1583c095d0 100644
--- a/cpukit/score/ChangeLog
+++ b/cpukit/score/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-17 Joel Sherrill <joel@OARcorp.com>
+
+ * include/rtems/score/object.h, src/objectinitializeinformation.c: Fix
+ warning.
+
2005-01-14 Ralf Corsepius <ralf.corsepius@rtems.org>
PR 742/rtems
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 39074c4ed9..82baf2af30 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -205,7 +205,7 @@ typedef struct {
void **object_blocks; /* the object memory to remove */
boolean is_string; /* TRUE if names are strings */
unsigned32 name_length; /* maximum length of names */
- Objects_Thread_queue_Extract_callout *extract;
+ Objects_Thread_queue_Extract_callout extract;
#if defined(RTEMS_MULTIPROCESSING)
Chain_Control *global_table; /* pointer to global table */
#endif
@@ -321,7 +321,7 @@ void _Objects_Initialize_information (
#if defined(RTEMS_MULTIPROCESSING)
,
boolean supports_global,
- Objects_Thread_queue_Extract_callout *extract
+ Objects_Thread_queue_Extract_callout extract
#endif
);
diff --git a/cpukit/score/src/objectinitializeinformation.c b/cpukit/score/src/objectinitializeinformation.c
index 23c971d5b7..c8a8847350 100644
--- a/cpukit/score/src/objectinitializeinformation.c
+++ b/cpukit/score/src/objectinitializeinformation.c
@@ -38,7 +38,7 @@
* maximum_name_length - maximum length of each object's name
* When multiprocessing is configured,
* supports_global - TRUE if this is a global object class
- * extract_callout - pointer to threadq extract callout if MP
+ * extract_callout - pointer to threadq extract callout
*
* Output parameters: NONE
*/
@@ -54,7 +54,7 @@ void _Objects_Initialize_information(
#if defined(RTEMS_MULTIPROCESSING)
,
boolean supports_global,
- Objects_Thread_queue_Extract_callout *extract
+ Objects_Thread_queue_Extract_callout extract
#endif
)
{