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

4.104.114.84.95
Last change on this file since b06e68ef was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2 *  Extension Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
6 *  On-Line Applications Research Corporation (OAR).
7 *  All rights assigned to U.S. Government, 1994.
8 *
9 *  This material may be reproduced by or for the U.S. Government pursuant
10 *  to the copyright license under the clause at DFARS 252.227-7013.  This
11 *  notice must appear in all copies of this file and its derivatives.
12 *
13 *  $Id$
14 */
15
16#include <rtems/system.h>
17#include <rtems/object.h>
18#include <rtems/thread.h>
19#include <rtems/extension.h>
20
21void _Extension_Manager_initialization(
22  unsigned32 maximum_extensions
23)
24{
25}
26
27rtems_status_code rtems_extension_create(
28  Objects_Name                   name,
29  rtems_extensions_table *extension_table,
30  Objects_Id                    *id
31)
32{
33  return( RTEMS_NOT_CONFIGURED );
34}
35
36rtems_status_code rtems_extension_ident(
37  Objects_Name  name,
38  Objects_Id   *id
39)
40{
41  return( RTEMS_NOT_CONFIGURED );
42}
43
44rtems_status_code rtems_extension_delete(
45  Objects_Id id
46)
47{
48  return( RTEMS_NOT_CONFIGURED );
49}
Note: See TracBrowser for help on using the repository browser.