Changeset 2859 for trunk/src/lib/nt/kFsCache.h
- Timestamp:
- Sep 1, 2016, 6:34:31 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/nt/kFsCache.h
r2858 r2859 239 239 KU64 uDevNo; 240 240 241 /** The last write time sampled the last time the directory was refreshed. 242 * @remarks May differ from st_mtim because it will be updated when the 243 * parent directory is refreshed. */ 244 KI64 iLastWrite; 245 241 246 /** Set if populated. */ 242 247 KBOOL fPopulated; … … 292 297 KU32 uHashPath; 293 298 /** The path length. */ 294 KU32 cchPath; 299 KU16 cchPath; 300 /** Set if aboslute path. */ 301 KBOOL fAbsolute; 295 302 /** The cache generation ID. */ 296 303 KU32 uCacheGen; … … 319 326 KU32 uHashPath; 320 327 /** The path length (in wchar_t units). */ 321 KU32 cwcPath; 328 KU16 cwcPath; 329 /** Set if aboslute path. */ 330 KBOOL fAbsolute; 322 331 /** The cache generation ID. */ 323 332 KU32 uCacheGen; … … 442 451 PKFSCACHE kFsCacheCreate(KU32 fFlags); 443 452 void kFsCacheDestroy(PKFSCACHE); 444 445 #endif 453 void kFsCacheInvalidateMissing(PKFSCACHE pFsCache); 454 void kFsCacheInvalidateAll(PKFSCACHE pFsCache); 455 456 #endif
Note:
See TracChangeset
for help on using the changeset viewer.