summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-17 17:20:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-17 17:20:55 +0000
commitb3d0e8bfcc943d0645ba6bb3e872a53f1621f040 (patch)
tree9fd9b1c1a9a59a3ba5d9abf2438ebb1f22027884
parentNew. (diff)
downloadrtems-b3d0e8bfcc943d0645ba6bb3e872a53f1621f040.tar.bz2
2010-06-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/include/rtems/score/object.h, score/include/rtems/score/thread.h: Remove prototypes for ITRON only methods removed by Ralf.
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/score/include/rtems/score/object.h43
-rw-r--r--cpukit/score/include/rtems/score/thread.h9
3 files changed, 6 insertions, 52 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index c38e41c41c..395e80aa79 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,9 @@
+2010-06-17 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * score/include/rtems/score/object.h,
+ score/include/rtems/score/thread.h: Remove prototypes for ITRON
+ only methods removed by Ralf.
+
2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* itron/Makefile.am, itron/preinstall.am
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 62b6d8d901..2d857a2f3c 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -531,21 +531,6 @@ Objects_Control *_Objects_Allocate(
);
/**
- * This function allocates the object control block
- * specified by the index from the inactive chain of
- * free object control blocks.
- *
- * @param[in] information points to an object class information block.
- * @param[in] the_index is the index of the object to allocate.
- * @param[in] sizeof_control is the size of the object control block.
- */
-Objects_Control *_Objects_Allocate_by_index(
- Objects_Information *information,
- int the_index,
- uint16_t sizeof_control
-);
-
-/**
*
* This function frees a object control block to the
* inactive chain of free object control blocks.
@@ -729,34 +714,6 @@ Objects_Control *_Objects_Get_isr_disable(
);
/**
- * This function maps object index to object control blocks which must.
- * be local. The parameter the_object control pointer which maps to id
- * and location is set to OBJECTS_LOCAL. Otherwise, location is set to
- OBJECTS_ERROR and the_object is undefined.
- *
- * @param[in] information points to an object class information block.
- * @param[in] id is the Id of the object whose name we are locating.
- * @param[in] location will contain an indication of success or failure.
- *
- * @return This method returns a pointer to the object associated with ID.
- *
- * @return This method returns one of the values from the
- * @ref Objects_Name_or_id_lookup_errors enumeration to indicate
- * successful or failure. On success @a id will contain the id of
- * the requested object.
- *
- * @note _Objects_Get returns with dispatching disabled for
- * local and remote objects. _Objects_Get_isr_disable returns with
- * dispatching disabled for remote objects and interrupts for local
- * objects.
- */
-Objects_Control *_Objects_Get_by_index (
- Objects_Information *information,
- Objects_Id id,
- Objects_Locations *location
-);
-
-/**
* This function maps object ids to object control blocks.
* If id corresponds to a local object, then it returns
* the_object control pointer which maps to id and location
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 214f8ce1f5..49239faf3d 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -698,15 +698,6 @@ void _Thread_Tickle_timeslice( void );
void _Thread_Yield_processor( void );
/**
- * This routine is invoked to rotate the ready queue for the
- * given priority. It can be used to yeild the processor
- * by rotating the executing threads ready queue.
- */
-void _Thread_Rotate_Ready_Queue(
- Priority_Control priority
-);
-
-/**
* This routine initializes the context of the_thread to its
* appropriate starting state.
*/