source: rtems/cpukit/score/src/objectallocatebyindex.c @ 3b2c473

4.104.114.84.95
Last change on this file since 3b2c473 was 3127180, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/29/04 at 12:51:43

2004-04-29 Ralf Corsepius <ralf_corsepius@…>

  • score/src/Unlimited.txt, score/src/chain.c, score/src/coremsg.c, score/src/coremsgbroadcast.c, score/src/coremsgclose.c, score/src/coremsgflush.c, score/src/coremsgflushsupp.c, score/src/coremsgseize.c, score/src/coremsgsubmit.c, score/src/coremutex.c, score/src/coremutexflush.c, score/src/coresem.c, score/src/coresemflush.c, score/src/coretod.c, score/src/coretodtickle.c, score/src/coretodtoseconds.c, score/src/coretodvalidate.c, score/src/heap.c, score/src/heapallocate.c, score/src/heapextend.c, score/src/heapfree.c, score/src/heapsizeofuserarea.c, score/src/interr.c, score/src/iterateoverthreads.c, score/src/mpci.c, score/src/object.c, score/src/objectallocate.c, score/src/objectallocatebyindex.c, score/src/objectclearname.c, score/src/objectcomparenameraw.c, score/src/objectcomparenamestring.c, score/src/objectcopynameraw.c, score/src/objectcopynamestring.c, score/src/objectextendinformation.c, score/src/objectfree.c, score/src/objectget.c, score/src/objectgetbyindex.c, score/src/objectgetisr.c, score/src/objectgetnoprotection.c, score/src/objectidtoname.c, score/src/objectinitializeinformation.c, score/src/objectmp.c, score/src/objectnametoid.c, score/src/objectshrinkinformation.c, score/src/thread.c, score/src/threadcreateidle.c, score/src/threadget.c, score/src/threadidlebody.c, score/src/threadinitialize.c, score/src/threadmp.c, score/src/threadq.c, score/src/threadqdequeuepriority.c, score/src/threadqenqueuepriority.c, score/src/threadqfirstpriority.c, score/src/threadqflush.c, score/src/threadreset.c, score/src/threadrestart.c, score/src/threadsettransient.c, score/src/threadstackallocate.c, score/src/threadstart.c, score/src/userext.c, score/src/watchdoginsert.c, score/src/wkspace.c: Convert to using c99 fixed size types.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 *  Object Handler
3 *
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/score/address.h>
17#include <rtems/score/chain.h>
18#include <rtems/score/object.h>
19#if defined(RTEMS_MULTIPROCESSING)
20#include <rtems/score/objectmp.h>
21#endif
22#include <rtems/score/thread.h>
23#include <rtems/score/wkspace.h>
24#include <rtems/score/sysstate.h>
25#include <rtems/score/isr.h>
26
27/*PAGE
28 *
29 *  _Objects_Allocate_by_index
30 *
31 *  DESCRIPTION:
32 *
33 *  This function allocates the object control block
34 *  specified by the index from the inactive chain of
35 *  free object control blocks.
36 */
37
38Objects_Control *_Objects_Allocate_by_index(
39  Objects_Information *information,
40  uint32_t             index,
41  uint32_t             sizeof_control
42)
43{
44  Objects_Control *the_object;
45
46  if ( index && information->maximum >= index ) {
47    the_object = information->local_table[ index ];
48    if ( the_object )
49      return NULL;
50
51    /* XXX
52     *  This whole section of code needs to be addressed.
53     *    +  The 0 should be dealt with more properly so we can autoextend.
54     *    +  The pointer arithmetic is probably too expensive.
55     *    +  etc.
56     */
57   
58    the_object = (Objects_Control *) _Addresses_Add_offset(
59      information->object_blocks[ 0 ],
60      (sizeof_control * (index - 1))
61    );
62    _Chain_Extract( &the_object->Node );
63 
64    return the_object;   
65  }   
66
67  /*
68   *  Autoextend will have to be thought out as it applies
69   *  to user assigned indices.
70   */
71
72  return NULL;
73}
Note: See TracBrowser for help on using the repository browser.