- Timestamp:
- Oct 4, 2009, 9:36:57 AM (16 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r21339 r21343 84 84 85 85 // this is the size of our currently static handle table 86 #define MAX_OS2_HMHANDLES ( 4*1024)86 #define MAX_OS2_HMHANDLES (16*1024) 87 87 #define ERROR_SYS_INTERNAL 328 88 88 -
trunk/src/kernel32/asmutil.asm
r9946 r21343 239 239 _clear_bit endp 240 240 241 rdtsc macro 242 db 0Fh, 31h 243 endm 244 245 public GetPentiumTSC 246 GetPentiumTSC proc near 247 mov ecx , [esp + 4] 248 rdtsc 249 mov [ecx] , eax 250 mov [ecx + 4] , edx 251 xor eax , eax 252 ret 253 GetPentiumTSC endp 254 241 255 CODE32 ENDS 242 256 -
trunk/src/kernel32/cpu.cpp
r10475 r21343 194 194 PF[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE; 195 195 if (features & CPUID_MMX) 196 196 PF[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE; 197 197 198 198 //Create FPU key if one is present -
trunk/src/kernel32/dbglog.cpp
r21339 r21343 16 16 *******************************************************************************/ 17 17 18 #define INCL_MISC 18 19 #define INCL_BASE 19 20 #define INCL_WIN … … 64 65 #define PRINTFMAXBUF PRINTFIDSIZE+PRINTFLINELEN 65 66 67 ULONG GetPentiumTSC (QWORD * tsc); 66 68 67 69 /***************************************************************************** -
trunk/src/kernel32/oslibdos.cpp
r21339 r21343 1314 1314 APIRET rc; 1315 1315 DWORD newoffset; 1316 1316 1317 1317 switch(method) 1318 1318 { … … 1349 1349 rc = DosSetFilePtr(hFile, OffsetLow, method, &newoffset); 1350 1350 1351 dprintf(("OSLibDosSetFilePointer. method: %08x wanted: %08x moved to %08x", 1352 method, OffsetLow, newoffset)); 1351 1353 if(rc) 1352 1354 {
Note:
See TracChangeset
for help on using the changeset viewer.