X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=yportenv.h;h=dade8e4c0f91a5fb5163b4c399ade3a3575bb2f6;hb=087046078841616093c6e6babe66eba1bd0ce0d6;hp=0c640372a2290c0030882405eda0c7b5eac07a18;hpb=0446bf9a8d4cb2703587b7c99bd01270cfcd7d96;p=yaffs%2F.git diff --git a/yportenv.h b/yportenv.h index 0c64037..dade8e4 100644 --- a/yportenv.h +++ b/yportenv.h @@ -15,7 +15,7 @@ * * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL. * - * $Id: yportenv.h,v 1.12 2004-10-04 23:24:21 charles Exp $ + * $Id: yportenv.h,v 1.13 2004-10-10 17:54:59 charles Exp $ * */ @@ -49,6 +49,13 @@ #define YAFFS_ROOT_MODE 0666 #define YAFFS_LOSTNFOUND_MODE 0666 +#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0)) +#define Y_CURRENT_TIME CURRENT_TIME.tv_sec +#define Y_TIME_CONVERT(x) (x).tv_sec +#else +#define Y_CURRENT_TIME CURRENT_TIME +#define Y_TIME_CONVERT(x) (x) +#endif #define yaffs_SumCompare(x,y) ((x) == (y)) #define yaffs_strcmp(a,b) strcmp(a,b) @@ -124,3 +131,4 @@ extern unsigned yaffs_traceMask; #endif #endif +