source: rtems/c/src/optman/sapi/no-ext.c @ 5a23ca84

4.104.114.84.95
Last change on this file since 5a23ca84 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
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$
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
23void _Extension_Manager_initialization(
24  unsigned32 maximum_extensions
25)
26{
27}
28
29rtems_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
43rtems_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
56rtems_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}
Note: See TracBrowser for help on using the repository browser.