Files
rtems/testsuites/fstests/support/ramdisk_support.h
Ralf Corsepius e5b2ed7a5d 2011-09-07 Ralf Corsépius <ralf.corsepius@rtems.org>
* imfs_support/fs_supprot.h, support/fstest.h,
	support/ramdisk_support.h: Don't include config.h.
2011-09-07 07:43:15 +00:00

27 lines
570 B
C

/*
* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
* $Id$
*/
#ifndef __RAMDISK_SUPPORT_H
#define __RAMDISK_SUPPORT_H
#define RAMDISK_BLOCK_SIZE (512)
#define RAMDISK_BLOCK_COUNT (1024)
#define RAMDISK_PATH "/dev/ramdisk"
#ifdef __cplusplus
extern "C" {
#endif
extern void init_ramdisk(void);
extern void del_ramdisk(void );
#ifdef __cplusplus
};
#endif
#endif