Changeset 210 for trunk/src/helpers/except.c
- Timestamp:
- Aug 22, 2002, 10:43:34 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/except.c
r191 r210 549 549 fprintf(file, "\nXCPT_ACCESS_VIOLATION: "); 550 550 if (pReportRec->ExceptionInfo[0] & XCPT_READ_ACCESS) 551 fprintf(file, "Invalid read access from 0x%04lX:%08lX.\n", 552 pContextRec->ctx_SegDs, pReportRec->ExceptionInfo[1]); 551 fprintf(file, "XCPT_READ_ACCESS -- Invalid read access from 0x%04lX:%08lX.\n", 552 pContextRec->ctx_SegDs, 553 pReportRec->ExceptionInfo[1]); 553 554 else if (pReportRec->ExceptionInfo[0] & XCPT_WRITE_ACCESS) 554 fprintf(file, "Invalid write access to 0x%04lX:%08lX.\n", 555 pContextRec->ctx_SegDs, pReportRec->ExceptionInfo[1]); 555 fprintf(file, "XCPT_WRITE_ACCESS -- Invalid write access to 0x%04lX:%08lX.\n", 556 pContextRec->ctx_SegDs, 557 pReportRec->ExceptionInfo[1]); 556 558 else if (pReportRec->ExceptionInfo[0] & XCPT_SPACE_ACCESS) 557 fprintf(file, " Invalid space access at 0x%04lX.\n",559 fprintf(file, "XCPT_SPACE_ACCESS -- Invalid space access at 0x%04lX.\n", 558 560 pReportRec->ExceptionInfo[1]); 559 561 else if (pReportRec->ExceptionInfo[0] & XCPT_LIMIT_ACCESS) 560 fprintf(file, " Invalid limit access occurred.\n");562 fprintf(file, "XCPT_LIMIT_ACCESS -- Invalid limit access occurred.\n"); 561 563 else if (pReportRec->ExceptionInfo[0] == XCPT_UNKNOWN_ACCESS) 562 fprintf(file, "unknown at 0x%04lX:%08lX\n", 563 pContextRec->ctx_SegDs, pReportRec->ExceptionInfo[1]); 564 fprintf(file, "XCPT_UNKNOWN_ACCESS -- unknown at 0x%04lX:%08lX\n", 565 pContextRec->ctx_SegDs, 566 pReportRec->ExceptionInfo[1]); 564 567 fprintf(file, 565 568 "Explanation: An attempt was made to access a memory object which does\n"
Note:
See TracChangeset
for help on using the changeset viewer.