Changeset 264 for branches/branch-1-0/src/helpers/except.c
- Timestamp:
- Nov 21, 2004, 11:14:36 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/src/helpers/except.c
r229 r264 53 53 + CATCH(excptid) 54 54 + { 55 + .... // exception occur ed: react here55 + .... // exception occurred: react here 56 56 + } END_CATCH(); // always needed! 57 57 + } // end of your_func … … 140 140 + 141 141 + if (fSemOwned) 142 + // this gets executed always, even if an exception occur ed142 + // this gets executed always, even if an exception occurred 143 143 + DosReleaseMutexSem(hmtx); 144 144 + } // end of your_func … … 720 720 // *** instruction 721 721 722 fprintf(file, "Instruction pointer (where exception occur ed):\n CS:EIP = %04lX:%08lX ",722 fprintf(file, "Instruction pointer (where exception occurred):\n CS:EIP = %04lX:%08lX ", 723 723 pContextRec->ctx_SegCs, 724 724 pContextRec->ctx_RegEip);
Note:
See TracChangeset
for help on using the changeset viewer.