qnx4_fs_sb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  Name                         : qnx4_fs_sb.h
  3.  *  Author                       : Richard Frowijn
  4.  *  Function                     : qnx4 superblock definitions
  5.  *  Version                      : 1.0.2
  6.  *  Last modified                : 2000-01-06
  7.  * 
  8.  *  History                      : 23-03-1998 created
  9.  * 
  10.  */
  11. #ifndef _QNX4_FS_SB
  12. #define _QNX4_FS_SB
  13. #include <linux/qnx4_fs.h>
  14. /*
  15.  * qnx4 super-block data in memory
  16.  */
  17. struct qnx4_sb_info {
  18. struct buffer_head *sb_buf; /* superblock buffer */
  19. struct qnx4_super_block *sb; /* our superblock */
  20. unsigned int Version; /* may be useful */
  21. struct qnx4_inode_entry *BitMap; /* useful */
  22. };
  23. #endif