source: rtems/cpukit/rtems/src/regiongetsegmentsize.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was 1095ec1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/18/05 at 09:03:45

Include config.h.

  • Property mode set to 100644
File size: 2.0 KB
Line 
1/*
2 *  Region Manager
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#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/thread.h>
27#include <rtems/score/apimutex.h>
28
29/*PAGE
30 *
31 *  rtems_region_get_segment_size
32 *
33 *  This directive will return the size of the segment indicated
34 *
35 *  Input parameters:
36 *    id         - region id
37 *    segment    - segment address
38 *    size       - pointer to segment size in bytes
39 *
40 *  Output parameters:
41 *    size       - segment size in bytes filled in
42 *    RTEMS_SUCCESSFUL - if successful
43 *    error code - if unsuccessful
44 */
45
46rtems_status_code rtems_region_get_segment_size(
47  Objects_Id         id,
48  void              *segment,
49  size_t            *size
50)
51{
52  register Region_Control *the_region;
53  Objects_Locations        location;
54  Thread_Control          *executing;
55
56  if ( !segment )
57    return RTEMS_INVALID_ADDRESS;
58
59  if ( !size )
60    return RTEMS_INVALID_ADDRESS;
61
62  _RTEMS_Lock_allocator();
63  executing  = _Thread_Executing;
64  the_region = _Region_Get( id, &location );
65  switch ( location ) {
66    case OBJECTS_REMOTE:        /* this error cannot be returned */
67      _RTEMS_Unlock_allocator();
68      return RTEMS_INTERNAL_ERROR;
69
70    case OBJECTS_ERROR:
71      _RTEMS_Unlock_allocator();
72      return RTEMS_INVALID_ID;
73
74    case OBJECTS_LOCAL:
75
76      if ( _Heap_Size_of_user_area( &the_region->Memory, segment, size ) ) {
77        _RTEMS_Unlock_allocator();
78        return RTEMS_SUCCESSFUL;
79      }
80      _RTEMS_Unlock_allocator();
81      return RTEMS_INVALID_ADDRESS;
82  }
83
84  return RTEMS_INTERNAL_ERROR;   /* unreached - only to remove warnings */
85}
Note: See TracBrowser for help on using the repository browser.