Changeset 480 for trunk/server/lib/util/time.h
- Timestamp:
- Aug 2, 2010, 8:16:45 PM (15 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 453,478
- Property svn:mergeinfo changed
-
trunk/server/lib/util/time.h
r414 r480 24 24 #endif 25 25 26 #ifndef TIME_T_MIN 27 /* we use 0 here, because (time_t)-1 means error */ 28 #define TIME_T_MIN 0 29 #endif 30 31 /* 32 * we use the INT32_MAX here as on 64 bit systems, 33 * gmtime() fails with INT64_MAX 34 */ 35 #ifndef TIME_T_MAX 36 #define TIME_T_MAX MIN(INT32_MAX,_TYPE_MAXIMUM(time_t)) 37 #endif 38 39 26 40 /* 64 bit time (100 nanosec) 1601 - cifs6.txt, section 3.5, page 30, 4 byte aligned */ 27 41 typedef uint64_t NTTIME;
Note:
See TracChangeset
for help on using the changeset viewer.