summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/object.h
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 /cpukit/score/include/rtems/score/object.h
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.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/object.h43
1 files changed, 0 insertions, 43 deletions
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