Ignore:
Timestamp:
Sep 1, 2016, 6:34:31 PM (9 years ago)
Author:
bird
Message:

updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/nt/kFsCache.h

    r2858 r2859  
    239239    KU64                uDevNo;
    240240
     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
    241246    /** Set if populated. */
    242247    KBOOL               fPopulated;
     
    292297    KU32                uHashPath;
    293298    /** The path length. */
    294     KU32                cchPath;
     299    KU16                cchPath;
     300    /** Set if aboslute path.   */
     301    KBOOL               fAbsolute;
    295302    /** The cache generation ID. */
    296303    KU32                uCacheGen;
     
    319326    KU32                uHashPath;
    320327    /** The path length (in wchar_t units). */
    321     KU32                cwcPath;
     328    KU16                cwcPath;
     329    /** Set if aboslute path.   */
     330    KBOOL               fAbsolute;
    322331    /** The cache generation ID. */
    323332    KU32                uCacheGen;
     
    442451PKFSCACHE   kFsCacheCreate(KU32 fFlags);
    443452void        kFsCacheDestroy(PKFSCACHE);
    444 
    445 #endif
     453void        kFsCacheInvalidateMissing(PKFSCACHE pFsCache);
     454void        kFsCacheInvalidateAll(PKFSCACHE pFsCache);
     455
     456#endif
Note: See TracChangeset for help on using the changeset viewer.