- Timestamp:
- Sep 21, 2016, 9:53:10 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kWorker/kWorker.c
r2949 r2957 4965 4965 } 4966 4966 } 4967 #if 0 /* compiler does write+copy mapping, so forget it. */ 4968 /* Precompiled header: .pch */ 4969 else if (wcFirst == 'p' || wcFirst == 'P') 4970 { 4971 if (wcSecond == 'c' || wcSecond == 'C') 4972 { 4973 if (wcThird == 'h' || wcThird == 'H') 4974 return K_TRUE; 4975 } 4976 } 4977 #endif 4967 4978 else if (fAttrQuery) 4968 4979 { … … 5096 5107 { 5097 5108 if ( cbFile.QuadPart >= 0 5098 && cbFile.QuadPart < 16*1024*1024) 5109 && ( cbFile.QuadPart < 16*1024*1024 5110 || ( cbFile.QuadPart < 64*1024*1024 5111 && pFsObj->cchName > 4 5112 && kHlpStrICompAscii(&pFsObj->pszName[pFsObj->cchName - 4], ".pch") == 0) )) 5099 5113 { 5100 5114 KU32 cbCache = (KU32)cbFile.QuadPart; … … 5505 5519 } 5506 5520 } 5507 KWFS_LOG(("SetFilePointer(%p )\n", hFile));5521 KWFS_LOG(("SetFilePointer(%p, %d, %p=%d, %d)\n", hFile, cbMove, pcbMoveHi ? *pcbMoveHi : 0, dwMoveMethod)); 5508 5522 return SetFilePointer(hFile, cbMove, pcbMoveHi, dwMoveMethod); 5509 5523 }
Note:
See TracChangeset
for help on using the changeset viewer.