source: rtems/testsuites/fstests/support/ramdisk_support.h @ e5b2ed7

4.115
Last change on this file since e5b2ed7 was e5b2ed7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/07/11 at 07:43:15

2011-09-07 Ralf Corsépius <ralf.corsepius@…>

  • imfs_support/fs_supprot.h, support/fstest.h, support/ramdisk_support.h: Don't include config.h.
  • Property mode set to 100644
File size: 570 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2011.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11#ifndef __RAMDISK_SUPPORT_H
12#define __RAMDISK_SUPPORT_H
13
14#define  RAMDISK_BLOCK_SIZE  (512)
15#define  RAMDISK_BLOCK_COUNT (1024)
16#define  RAMDISK_PATH "/dev/ramdisk"
17#ifdef __cplusplus
18extern "C" {
19#endif
20extern void  init_ramdisk(void);
21extern void  del_ramdisk(void );
22#ifdef __cplusplus
23};
24#endif
25
26#endif
Note: See TracBrowser for help on using the repository browser.