summaryrefslogtreecommitdiffstats
path: root/testsuites/fstests/support/ramdisk_support.h
blob: 3c92d62a04c04cc28c940adc225d93a0a9d6b76f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 *  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.org/license/LICENSE.
 */
#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