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

4.104.114.84.95
Last change on this file since f4d52cd7 was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[ac7d5ef0]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>
[3a4ae6c]17#include <rtems/rtems/status.h>
18#include <rtems/rtems/support.h>
[5e9b32b]19#include <rtems/score/object.h>
20#include <rtems/score/thread.h>
[ac7d5ef0]21#include <rtems/extension.h>
22
23void _Extension_Manager_initialization(
24  unsigned32 maximum_extensions
25)
26{
27}
28
29rtems_status_code rtems_extension_create(
[3a4ae6c]30  rtems_name              name,
[ac7d5ef0]31  rtems_extensions_table *extension_table,
[3a4ae6c]32  Objects_Id             *id
[ac7d5ef0]33)
34{
[3a4ae6c]35  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]36}
37
38rtems_status_code rtems_extension_ident(
[3235ad9]39  rtems_name    name,
[ac7d5ef0]40  Objects_Id   *id
41)
42{
[3a4ae6c]43  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]44}
45
46rtems_status_code rtems_extension_delete(
47  Objects_Id id
48)
49{
[3a4ae6c]50  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]51}
Note: See TracBrowser for help on using the repository browser.