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

4.104.114.84.95
Last change on this file since c83b5678 was c83b5678, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/31/04 at 08:29:14

2004-03-31 Ralf Corsepius <ralf_corsepius@…>

  • optman/rtems/no-dpmem.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-timer.c, optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert to using c99 fixed size types.
  • 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.rtems.com/license/LICENSE.
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  uint32_t   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.