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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [sapi/] [optman/] [no-ext.c] - Blame information for rev 735

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

Line No. Rev Author Line
1 30 unneback
/*
2
 *  Extension 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.OARcorp.com/rtems/license.html.
11
 *
12
 *  $Id: no-ext.c,v 1.2 2001-09-27 11:59:20 chris Exp $
13
 */
14
 
15
#include <rtems/system.h>
16
#include <rtems/rtems/status.h>
17
#include <rtems/rtems/support.h>
18
#include <rtems/score/object.h>
19
#include <rtems/score/thread.h>
20
#include <rtems/extension.h>
21
#include <rtems/score/interr.h>
22
 
23
void _Extension_Manager_initialization(
24
  unsigned32 maximum_extensions
25
)
26
{
27
}
28
 
29
rtems_status_code rtems_extension_create(
30
  rtems_name              name,
31
  rtems_extensions_table *extension_table,
32
  Objects_Id             *id
33
)
34
{
35
  _Internal_error_Occurred(
36
    INTERNAL_ERROR_RTEMS_API,
37
    FALSE,
38
    RTEMS_NOT_CONFIGURED
39
  );
40
  return RTEMS_NOT_CONFIGURED;
41
}
42
 
43
rtems_status_code rtems_extension_ident(
44
  rtems_name    name,
45
  Objects_Id   *id
46
)
47
{
48
  _Internal_error_Occurred(
49
    INTERNAL_ERROR_RTEMS_API,
50
    FALSE,
51
    RTEMS_NOT_CONFIGURED
52
  );
53
  return RTEMS_NOT_CONFIGURED;
54
}
55
 
56
rtems_status_code rtems_extension_delete(
57
  Objects_Id id
58
)
59
{
60
  _Internal_error_Occurred(
61
    INTERNAL_ERROR_RTEMS_API,
62
    FALSE,
63
    RTEMS_NOT_CONFIGURED
64
  );
65
  return RTEMS_NOT_CONFIGURED;
66
}

powered by: WebSVN 2.1.0

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