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

4.104.114.84.95
Last change on this file since 7f6a24ab was 3235ad9, checked in by Joel Sherrill <joel.sherrill@…>, on 08/23/95 at 19:30:23

Support for variable length names added to Object Handler. This supports
both fixed length "raw" names and strings from the API's point of view.

Both inline and macro implementations were tested.

  • 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  rtems_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  rtems_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.