source: rtems/c/src/optman/rtems/no-region.c @ 62c4e481

4.104.114.84.95
Last change on this file since 62c4e481 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.7 KB
Line 
1/*
2 *  Region 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/score/object.h>
19#include <rtems/rtems/options.h>
20#include <rtems/rtems/region.h>
21#include <rtems/score/states.h>
22#include <rtems/score/thread.h>
23
24void _Region_Manager_initialization(
25  unsigned32 maximum_regions
26)
27{
28}
29
30rtems_status_code rtems_region_create(
31  rtems_name          name,
32  void               *starting_address,
33  unsigned32          length,
34  unsigned32          page_size,
35  rtems_attribute  attribute_set,
36  Objects_Id         *id
37)
38{
39  return RTEMS_NOT_CONFIGURED;
40}
41
42rtems_status_code rtems_region_ident(
43  rtems_name    name,
44  Objects_Id   *id
45)
46{
47  return RTEMS_NOT_CONFIGURED;
48}
49
50rtems_status_code rtems_region_delete(
51  Objects_Id id
52)
53{
54  return RTEMS_NOT_CONFIGURED;
55}
56
57rtems_status_code rtems_region_get_segment(
58  Objects_Id         id,
59  unsigned32         size,
60  rtems_option    option_set,
61  rtems_interval  timeout,
62  void              **segment
63)
64{
65  return RTEMS_NOT_CONFIGURED;
66}
67
68rtems_status_code rtems_region_get_segment_size(
69  Objects_Id         id,
70  void              *segment,
71  unsigned32        *size
72)
73{
74  return RTEMS_NOT_CONFIGURED;
75}
76
77rtems_status_code rtems_region_return_segment(
78  Objects_Id  id,
79  void       *segment
80)
81{
82  return RTEMS_NOT_CONFIGURED;
83}
Note: See TracBrowser for help on using the repository browser.