yportenv.h
上传用户:fy98168
上传日期:2015-06-26
资源大小:13771k
文件大小:4k
源码类别:

DVD

开发平台:

C/C++

  1. /*
  2.  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
  3.  * yportenv.h: Portable services used by yaffs. This is done to allow
  4.  * simple migration from kernel space into app space for testing.
  5.  *
  6.  * Copyright (C) 2002 Aleph One Ltd.
  7.  *   for Toby Churchill Ltd and Brightstar Engineering
  8.  *
  9.  * Created by Charles Manning <charles@aleph1.co.uk>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU Lesser General Public License version 2.1 as
  13.  * published by the Free Software Foundation.
  14.  *
  15.  *
  16.  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
  17.  *
  18.  * $Id: yportenv.h,v 1.10 2003/01/31 03:30:33 charles Exp $
  19.  *
  20.  */
  21.  
  22. #ifndef __YPORTENV_H__
  23. #define __YPORTENV_H__
  24. #define CONFIG_YAFFS_DIRECT     1
  25. #define loff_t int
  26. #if defined CONFIG_YAFFS_WINCE
  27. #include "stdlib.h"
  28. #include "stdio.h"
  29. #include "string.h"
  30. #define CONFIG_YAFFS_CASE_INSENSITIVE
  31. #define YMALLOC(x) malloc(x)
  32. #define YFREE(x)   free(x)
  33. #define YINFO(s) YPRINTF(( __FILE__ " %d %sn",__LINE__,s))
  34. #define YALERT(s) YINFO(s)
  35. #include <windows.h>
  36. #define YAFFS_LOSTNFOUND_NAME "Lost Clusters"
  37. #define YAFFS_LOSTNFOUND_PREFIX "OBJ"
  38. #define YPRINTF(x) RETAILMSG(1,x)
  39. #define yaffs_SumCompare(x,y) ((x) == (y))
  40. #define yaffs_strcmp(a,b) _stricmp(a,b)
  41. #define u_char unsigned char
  42. #define loff_t int
  43. #define S_IFDIR 04000
  44. #define S_ISFIFO(x) 0
  45. #define S_ISCHR(x) 0
  46. #define S_ISBLK(x) 0
  47. #define S_ISSOCK(x) 0
  48. extern unsigned yfsd_U32FileTimeNow(void);
  49. #define CURRENT_TIME  yfsd_U32FileTimeNow()
  50. #define YAFFS_ROOT_MODE FILE_ATTRIBUTE_ARCHIVE
  51. #define YAFFS_LOSTNFOUND_MODE FILE_ATTRIBUTE_HIDDEN
  52. #define TENDSTR L"rn"
  53. #define TSTR(x) TEXT(x)
  54. #define TOUT(x) RETAILMSG(1, x)
  55. #elif  defined __KERNEL__
  56. #include "linux/kernel.h"
  57. #include "linux/mm.h"
  58. #include "linux/string.h"
  59. #include "linux/slab.h"
  60. #define YAFFS_LOSTNFOUND_NAME "lost+found"
  61. #define YAFFS_LOSTNFOUND_PREFIX "obj"
  62. #define YMALLOC(x) kmalloc(x,GFP_KERNEL)
  63. #define YFREE(x)   kfree(x)
  64. #define YAFFS_ROOT_MODE 0666
  65. #define YAFFS_LOSTNFOUND_MODE 0666
  66. #define yaffs_SumCompare(x,y) ((x) == (y))
  67. #define yaffs_strcmp(a,b) strcmp(a,b)
  68. #define TENDSTR "n"
  69. #define TSTR(x) KERN_DEBUG x
  70. #define TOUT(p) printk p
  71. #elif defined CONFIG_YAFFS_DIRECT
  72. #include "stdlib.h"
  73. #include "stdio.h"
  74. #include "string.h"
  75. #define YMALLOC(x) malloc(x)
  76. #define YFREE(x)   free(x)
  77. #define TENDSTR "n"
  78. #define TSTR(x) x
  79. #define TOUT(p) printf p
  80. #define YAFFS_LOSTNFOUND_NAME "lost+found"
  81. #define YAFFS_LOSTNFOUND_PREFIX "obj"
  82. #include "yaffscfg.h"
  83. #define CURRENT_TIME yaffsfs_CurrentTime()
  84. #define YAFFS_ROOT_MODE 0666
  85. #define YAFFS_LOSTNFOUND_MODE 0666
  86. #define yaffs_SumCompare(x,y) ((x) == (y))
  87. #define yaffs_strcmp(a,b) strcmp(a,b)
  88. #elif defined CONFIG_YAFFS_UTIL
  89. #include "stdlib.h"
  90. #include "stdio.h"
  91. #include "string.h"
  92. #define YMALLOC(x) malloc(x)
  93. #define YFREE(x)   free(x)
  94. #define TENDSTR "n"
  95. #define TSTR(x) x
  96. #define TOUT(p) printf p
  97. #define YAFFS_LOSTNFOUND_NAME "lost+found"
  98. #define YAFFS_LOSTNFOUND_PREFIX "obj"
  99. #define CURRENT_TIME 0
  100. #define YAFFS_ROOT_MODE 0666
  101. #define YAFFS_LOSTNFOUND_MODE 0666
  102. #define yaffs_SumCompare(x,y) ((x) == (y))
  103. #define yaffs_strcmp(a,b) strcmp(a,b)
  104. #else
  105. #error Unknown configuration
  106. #endif 
  107. extern unsigned yaffs_traceMask;
  108. #define YAFFS_TRACE_ERROR 0x0001
  109. #define YAFFS_TRACE_OS 0x0002
  110. #define YAFFS_TRACE_ALLOCATE 0x0004
  111. #define YAFFS_TRACE_SCAN 0x0008
  112. #define YAFFS_TRACE_BAD_BLOCKS 0x0010
  113. #define YAFFS_TRACE_ERASE 0x0020
  114. #define YAFFS_TRACE_GC 0x0040
  115. #define YAFFS_TRACE_TRACING 0x0100
  116. #define YAFFS_TRACE_ALWAYS 0x0200
  117. #define YAFFS_TRACE_BUG 0x8000
  118. #define T(mask,p) do{ if((mask) & (yaffs_traceMask | YAFFS_TRACE_ERROR)) TOUT(p);} while(0) 
  119. #ifdef CONFIG_YAFFS_WINCE
  120. #define YBUG() T(YAFFS_TRACE_BUG,(TSTR("==>> yaffs bug: %s %d" TENDSTR),TEXT(__FILE__),__LINE__))
  121. #else
  122. #define YBUG() T(YAFFS_TRACE_BUG,(TSTR("==>> yaffs bug: " __FILE__ " %d" TENDSTR),__LINE__))
  123. #endif
  124. #endif