source: rtems/c/src/exec/rtems/optman/no-part.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.4 KB
Line 
1/*
2 *  Partition 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/address.h>
19#include <rtems/score/object.h>
20#include <rtems/rtems/part.h>
21#include <rtems/score/thread.h>
22
23void _Partition_Manager_initialization(
24  unsigned32 maximum_partitions
25)
26{
27}
28
29rtems_status_code rtems_partition_create(
30  rtems_name          name,
31  void               *starting_address,
32  unsigned32          length,
33  unsigned32          buffer_size,
34  rtems_attribute  attribute_set,
35  Objects_Id         *id
36)
37{
38  return RTEMS_NOT_CONFIGURED;
39}
40
41rtems_status_code rtems_partition_ident(
42  rtems_name    name,
43  unsigned32    node,
44  Objects_Id   *id
45)
46{
47  return RTEMS_NOT_CONFIGURED;
48}
49
50rtems_status_code rtems_partition_delete(
51  Objects_Id id
52)
53{
54  return RTEMS_NOT_CONFIGURED;
55}
56
57rtems_status_code rtems_partition_get_buffer(
58  Objects_Id   id,
59  void       **buffer
60)
61{
62  return RTEMS_NOT_CONFIGURED;
63}
64
65rtems_status_code rtems_partition_return_buffer(
66  Objects_Id  id,
67  void       *buffer
68)
69{
70  return RTEMS_NOT_CONFIGURED;
71}
Note: See TracBrowser for help on using the repository browser.