summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/score/object.h5
-rw-r--r--cpukit/score/include/rtems/score/objectmp.h11
2 files changed, 1 insertions, 15 deletions
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 3d02e5f9a7..6a746501a6 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -435,11 +435,6 @@ SCORE_EXTERN Objects_Information
#define OBJECTS_ID_FINAL ((Objects_Id)~0)
/**
- * This function performs the initialization necessary for this handler.
- */
-void _Objects_Handler_initialization(void);
-
-/**
* This function extends an object class information record.
*
* @param[in] information points to an object class information block.
diff --git a/cpukit/score/include/rtems/score/objectmp.h b/cpukit/score/include/rtems/score/objectmp.h
index ec449ea0e6..5c47659ee1 100644
--- a/cpukit/score/include/rtems/score/objectmp.h
+++ b/cpukit/score/include/rtems/score/objectmp.h
@@ -50,17 +50,8 @@ typedef struct {
*
* This routine intializes the inactive global object chain
* based on the maximum number of global objects configured.
- *
- * @param[in] node is this node's number.
- * @param[in] maximum_nodes is the maximum number of nodes in the system.
- * @param[in] maximum_global_objects is the maximum number of concurrently
- * created global objects.
*/
-void _Objects_MP_Handler_initialization (
- uint32_t node,
- uint32_t maximum_nodes,
- uint32_t maximum_global_objects
-);
+void _Objects_MP_Handler_initialization(void);
/** @brief Objects MP Open
*