forked from Imagelibrary/rtems
* configure.ac, fserror/test.c, fslink/test.c, fspermission/test.c, fsrdwr/init.c, fssymlink/test.c, fstime/test.c, mdosfs_support/fs_config.h, mdosfs_support/fs_support.c, mimfs_support/fs_support.c, mrfs_support/fs_config.h, support/fstest.h, support/fstest_support.c, support/ramdisk_support.c, support/ramdisk_support.h: Perform first phase of clean up.
31 lines
624 B
C
31 lines
624 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 Exp $
|
|
*/
|
|
#ifndef __RAMDISK_SUPPORT_H
|
|
#define __RAMDISK_SUPPORT_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#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
|