- Timestamp:
- Sep 15, 2000, 3:24:29 PM (25 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/Fileio.cpp
r4230 r4264 1 /* $Id: Fileio.cpp,v 1.3 8 2000-09-10 21:54:05sandervl Exp $ */1 /* $Id: Fileio.cpp,v 1.39 2000-09-15 13:24:28 sandervl Exp $ */ 2 2 3 3 /* … … 410 410 BOOL rc; 411 411 412 #if 1412 #if 0 413 413 dprintf(("DeleteFileA %s", lpszFile)); 414 414 return 1; -
trunk/src/kernel32/KERNEL32.DEF
r3993 r4264 1 ; $Id: KERNEL32.DEF,v 1.8 5 2000-08-11 10:56:16sandervl Exp $1 ; $Id: KERNEL32.DEF,v 1.86 2000-09-15 13:24:29 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 1024 1024 WriteLog @1202 1025 1025 WriteLogError @1214 1026 WriteLogNoEOL @1218 1026 1027 WritePrivateLog @1208 1027 1028 DecreaseLogCount @1273 -
trunk/src/kernel32/async.cpp
r3642 r4264 1 /* $Id: async.cpp,v 1. 8 2000-06-01 11:28:44sandervl Exp $ */1 /* $Id: async.cpp,v 1.9 2000-09-15 13:24:29 sandervl Exp $ */ 2 2 3 3 /* … … 11 11 * 12 12 */ 13 14 #ifndef _ASYNCIOSUBSYSTEM_H_15 #define _ASYNCIOSUBSYSTEM_H_16 13 17 14 … … 114 111 } 115 112 116 #endif /* _ASYNCIOSUBSYSTEM_H_ */ -
trunk/src/kernel32/exceptions.cpp
r4229 r4264 1 /* $Id: exceptions.cpp,v 1.4 4 2000-09-09 08:59:54sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.45 2000-09-15 13:24:29 sandervl Exp $ */ 2 2 3 3 /* WARNING: Compiling this module with ICC with optimizations turned on */ … … 1053 1053 PVOID p) 1054 1054 { 1055 //MN: If EH_NESTED_CALL is set, an exception occurred during the execution1056 // of this exception handler. We better bail out ASAP or we'll likely1057 // recurse infinitely until we run out of stack space!!1058 if (pERepRec->fHandlerFlags & EH_NESTED_CALL)1059 return XCPT_CONTINUE_SEARCH;1060 1061 1055 //SvL: Check if exception inside debug fprintf -> if so, clear lock so 1062 1056 // next dprintf won't wait forever … … 1175 1169 case XCPT_IN_PAGE_ERROR: 1176 1170 CrashAndBurn: 1171 //SvL: TODO: this may not always be the right thing to do 1172 //MN: If EH_NESTED_CALL is set, an exception occurred during the execution 1173 // of this exception handler. We better bail out ASAP or we'll likely 1174 // recurse infinitely until we run out of stack space!! 1175 if (pERepRec->fHandlerFlags & EH_NESTED_CALL) 1176 return XCPT_CONTINUE_SEARCH; 1177 1177 1178 #ifdef DEBUG 1178 1179 dprintfException(pERepRec, pERegRec, pCtxRec, p);
Note:
See TracChangeset
for help on using the changeset viewer.