source: rtems/cpukit/rtems/src/regiongetfreeinfo.c @ 708fe56

4.104.115
Last change on this file since 708fe56 was 708fe56, checked in by Joel Sherrill <joel.sherrill@…>, on 09/29/09 at 00:11:20

2009-09-28 Joel Sherrill <joel.sherrill@…>

  • rtems/src/regiondelete.c, rtems/src/regiongetfreeinfo.c, rtems/src/regiongetinfo.c, rtems/src/regiongetsegment.c, rtems/src/regiongetsegmentsize.c, rtems/src/regionresizesegment.c, rtems/src/regionreturnsegment.c: Remove warnings.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1/*
2 *  Region Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-2007.
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#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <rtems/system.h>
20#include <rtems/rtems/status.h>
21#include <rtems/rtems/support.h>
22#include <rtems/score/object.h>
23#include <rtems/rtems/options.h>
24#include <rtems/rtems/region.h>
25#include <rtems/score/states.h>
26#include <rtems/score/apimutex.h>
27#include <rtems/score/thread.h>
28
29/*PAGE
30 *
31 *  rtems_region_get_free_information
32 *
33 *  This directive will return information about the free blocks
34 *  in the region specified.  Information about the used blocks
35 *  will be returned as zero.
36 *
37 *  Input parameters:
38 *    id         - region id
39 *    the_info   - pointer to region information block
40 *
41 *  Output parameters:
42 *    *the_info   - region information block filled in
43 *    RTEMS_SUCCESSFUL - if successful
44 *    error code - if unsuccessful
45 */
46
47rtems_status_code rtems_region_get_free_information(
48  Objects_Id              id,
49  Heap_Information_block *the_info
50)
51{
52  Objects_Locations        location;
53  rtems_status_code        return_status = RTEMS_SUCCESSFUL;
54  register Region_Control *the_region;
55
56  if ( !the_info )
57    return RTEMS_INVALID_ADDRESS;
58
59  _RTEMS_Lock_allocator();
60
61    the_region = _Region_Get( id, &location );
62    switch ( location ) {
63
64      case OBJECTS_LOCAL:
65
66        the_info->Used.number   = 0;
67        the_info->Used.total    = 0;
68        the_info->Used.largest  = 0;
69
70        _Heap_Get_free_information( &the_region->Memory, &the_info->Free );
71
72        return_status = RTEMS_SUCCESSFUL;
73        break;
74
75#if defined(RTEMS_MULTIPROCESSING)
76      case OBJECTS_REMOTE:        /* this error cannot be returned */
77        break;
78#endif
79
80      case OBJECTS_ERROR:
81        return_status = RTEMS_INVALID_ID;
82        break;
83    }
84
85  _RTEMS_Unlock_allocator();
86  return return_status;
87}
Note: See TracBrowser for help on using the repository browser.