source: rtems/testsuites/fstests/support/ramdisk_support.h @ 6fed43e

4.115
Last change on this file since 6fed43e was 6fed43e, checked in by Joel Sherrill <joel.sherrill@…>, on 08/02/11 at 14:24:59

2011-08-02 Xiang Cui <medivhc@…>

  • 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.
  • Property mode set to 100644
File size: 624 bytes
RevLine 
[7336d4af]1/*
[858e013f]2 *  COPYRIGHT (c) 1989-2011.
3 *  On-Line Applications Research Corporation (OAR).
[7336d4af]4 *
[858e013f]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 Exp $
[7336d4af]10 */
11#ifndef __RAMDISK_SUPPORT_H
12#define __RAMDISK_SUPPORT_H
13
14#ifdef HAVE_CONFIG_H
15#include "config.h"
[6fed43e]16#endif
[7336d4af]17
18#define  RAMDISK_BLOCK_SIZE  (512)
19#define  RAMDISK_BLOCK_COUNT (1024)
20#define  RAMDISK_PATH "/dev/ramdisk"
21#ifdef __cplusplus
22extern "C" {
23#endif
24extern void  init_ramdisk(void);
25extern void  del_ramdisk(void );
26#ifdef __cplusplus
27};
28#endif
29
30#endif
Note: See TracBrowser for help on using the repository browser.