OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [sapi/] [src/] [extensiondelete.c] - Blame information for rev 1780

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  Extension Manager -- rtems_extension_delete
3
 *
4
 *
5
 *  COPYRIGHT (c) 1989-2002.
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.OARcorp.com/rtems/license.html.
11
 *
12
 *  extensiondelete.c,v 1.1 2002/03/15 14:32:22 joel Exp
13
 */
14
 
15
#include <rtems/system.h>
16
#include <rtems/rtems/support.h>
17
#include <rtems/score/object.h>
18
#include <rtems/score/thread.h>
19
#include <rtems/extension.h>
20
 
21
/*PAGE
22
 *
23
 *  rtems_extension_delete
24
 *
25
 *  This directive allows a thread to delete a extension.
26
 *
27
 *  Input parameters:
28
 *    id - extension id
29
 *
30
 *  Output parameters:
31
 *    RTEMS_SUCCESSFUL - if successful
32
 *    error code - if unsuccessful
33
 */
34
 
35
rtems_status_code rtems_extension_delete(
36
  Objects_Id id
37
)
38
{
39
  Extension_Control   *the_extension;
40
  Objects_Locations    location;
41
 
42
  the_extension = _Extension_Get( id, &location );
43
  switch ( location ) {
44
    case OBJECTS_ERROR:
45
    case OBJECTS_REMOTE:            /* should never return this */
46
      return RTEMS_INVALID_ID;
47
    case OBJECTS_LOCAL:
48
      _User_extensions_Remove_set( &the_extension->Extension );
49
      _Objects_Close( &_Extension_Information, &the_extension->Object );
50
      _Extension_Free( the_extension );
51
      _Thread_Enable_dispatch();
52
      return RTEMS_SUCCESSFUL;
53
  }
54
 
55
  return RTEMS_INTERNAL_ERROR;   /* unreached - only to remove warnings */
56
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.