source: rtems/c/src/optman/sapi/no-ext.c @ 9eef52b

4.104.114.84.95
Last change on this file since 9eef52b was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 *  Extension Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1998.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <rtems/system.h>
17#include <rtems/rtems/status.h>
18#include <rtems/rtems/support.h>
19#include <rtems/score/object.h>
20#include <rtems/score/thread.h>
21#include <rtems/extension.h>
22#include <rtems/score/interr.h>
23
24void _Extension_Manager_initialization(
25  unsigned32 maximum_extensions
26)
27{
28}
29
30rtems_status_code rtems_extension_create(
31  rtems_name              name,
32  rtems_extensions_table *extension_table,
33  Objects_Id             *id
34)
35{
36  _Internal_error_Occurred(
37    INTERNAL_ERROR_RTEMS_API,
38    FALSE,
39    RTEMS_NOT_CONFIGURED
40  );
41  return RTEMS_NOT_CONFIGURED;
42}
43
44rtems_status_code rtems_extension_ident(
45  rtems_name    name,
46  Objects_Id   *id
47)
48{
49  _Internal_error_Occurred(
50    INTERNAL_ERROR_RTEMS_API,
51    FALSE,
52    RTEMS_NOT_CONFIGURED
53  );
54  return RTEMS_NOT_CONFIGURED;
55}
56
57rtems_status_code rtems_extension_delete(
58  Objects_Id id
59)
60{
61  _Internal_error_Occurred(
62    INTERNAL_ERROR_RTEMS_API,
63    FALSE,
64    RTEMS_NOT_CONFIGURED
65  );
66  return RTEMS_NOT_CONFIGURED;
67}
Note: See TracBrowser for help on using the repository browser.