source: rtems/cpukit/rtems/src/regiondelete.c @ 5700b804

4.104.114.95
Last change on this file since 5700b804 was 5700b804, checked in by Glenn Humphrey <glenn.humphrey@…>, on 11/27/07 at 17:38:11

2007-11-27 Glenn Humphrey <glenn.humphrey@…>

  • rtems/src/regioncreate.c, rtems/src/regiondelete.c, rtems/src/regionextend.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: Restructed to move the OBJECTS_LOCAL case to the top of the switch statement, have a single exit with one call to _RTEMS_Unlock_allocator and eliminate the fall-through return of RTEMS_INTERNAL_ERROR. These changes produced simplier assembly code and allowed for complete test coverage.
  • Property mode set to 100644
File size: 1.9 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/thread.h>
27#include <rtems/score/apimutex.h>
28
29/*PAGE
30 *
31 *  rtems_region_delete
32 *
33 *  This directive allows a thread to delete a region specified by
34 *  the region identifier, provided that none of its segments are
35 *  still allocated.
36 *
37 *  Input parameters:
38 *    id - region id
39 *
40 *  Output parameters:
41 *    RTEMS_SUCCESSFUL - if successful
42 *    error code       - if unsuccessful
43 */
44
45rtems_status_code rtems_region_delete(
46  Objects_Id id
47)
48{
49  Objects_Locations        location;
50  rtems_status_code        return_status = RTEMS_INTERNAL_ERROR;
51  register Region_Control *the_region;
52
53  _RTEMS_Lock_allocator();
54
55    the_region = _Region_Get( id, &location );
56    switch ( location ) {
57
58      case OBJECTS_LOCAL:
59        _Region_Debug_Walk( the_region, 5 );
60        if ( the_region->number_of_used_blocks != 0 )
61          return_status = RTEMS_RESOURCE_IN_USE;
62        else {
63          _Objects_Close( &_Region_Information, &the_region->Object );
64          _Region_Free( the_region );
65          return_status = RTEMS_SUCCESSFUL;
66        }
67        break;
68
69#if defined(RTEMS_MULTIPROCESSING)
70      case OBJECTS_REMOTE:        /* this error cannot be returned */
71        break;
72#endif
73
74      case OBJECTS_ERROR:
75        return_status = RTEMS_INVALID_ID;
76        break;
77    }
78
79  _RTEMS_Unlock_allocator();
80  return return_status;
81}
Note: See TracBrowser for help on using the repository browser.