ydirectenv.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:1k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2.  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
  3.  * ydirectenv.h: Environment wrappers for direct.
  4.  *
  5.  * Copyright (C) 2002 Aleph One Ltd.
  6.  *   for Toby Churchill Ltd and Brightstar Engineering
  7.  *
  8.  * Created by Charles Manning <charles@aleph1.co.uk>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU Lesser General Public License version 2.1 as
  12.  * published by the Free Software Foundation.
  13.  *
  14.  *
  15.  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
  16.  *
  17.  * $Id: ydirectenv.h,v 1.2 2004/10/10 17:54:59 charles Exp $
  18.  *
  19.  */
  20.  
  21. #ifndef __YDIRECTENV_H__
  22. #define __YDIRECTENV_H__
  23. // Direct interface
  24. #include "devextras.h"
  25. #include "stdlib.h"
  26. #include "stdio.h"
  27. #include "string.h"
  28. #include "../inc/sysconfig.h"
  29. #define YMALLOC(x) malloc(x)
  30. #define YFREE(x)   free(x)
  31. //#define YINFO(s) YPRINTF(( __FILE__ " %d %sn",__LINE__,s))
  32. //#define YALERT(s) YINFO(s)
  33. #define TENDSTR "n"
  34. #define TSTR(x) x
  35. #define TOUT(p) printf p
  36. #define YAFFS_LOSTNFOUND_NAME "lost+found"
  37. #define YAFFS_LOSTNFOUND_PREFIX "obj"
  38. //#define YPRINTF(x) printf x
  39. #define S_ISFIFO(x) 0
  40. #define S_ISCHR(x) 0
  41. #define S_ISBLK(x) 0
  42. #define S_ISSOCK(x) 0
  43. #include "yaffscfg.h"
  44. #define Y_CURRENT_TIME yaffsfs_CurrentTime()
  45. #define Y_TIME_CONVERT(x) (x)
  46. #define YAFFS_ROOT_MODE 0666
  47. #define YAFFS_LOSTNFOUND_MODE 0666
  48. #define yaffs_SumCompare(x,y) ((x) == (y))
  49. #define yaffs_strcmp(a,b) strcmp(a,b)
  50. #endif