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

4.104.114.84.95
Last change on this file since c64e4ed4 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
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/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
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  return RTEMS_NOT_CONFIGURED;
36}
37
38rtems_status_code rtems_extension_ident(
39  rtems_name    name,
40  Objects_Id   *id
41)
42{
43  return RTEMS_NOT_CONFIGURED;
44}
45
46rtems_status_code rtems_extension_delete(
47  Objects_Id id
48)
49{
50  return RTEMS_NOT_CONFIGURED;
51}
Note: See TracBrowser for help on using the repository browser.