Changeset 2520 for branches


Ignore:
Timestamp:
Feb 4, 2006, 7:10:46 PM (20 years ago)
Author:
bird
Message:

#38: Added DosSysCtl prototype and use it on panic to check for debugger.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/src/lib/sys/b_panic.c

    r2519 r2520  
    205205            else if (panicStrICmp(&pszPanicCfg, "breakpoint", "BREAKPOINT"))
    206206                fBreakpoint = TRUE;
     207            else if (panicStrICmp(&pszPanicCfg, "nobreakpoint", "NOBREAKPOINT"))
     208                fBreakpoint = FALSE;
    207209            //else if (panicStrICmp(&pszPanicCfg, "dump", "DUMP"))
    208210            //    fDumpProcess = TRUE;
     
    416418        {
    417419            if (!rc)
    418                 PRINT_C("Process have been dumped\r\n");
     420                PRINT_C("Process has been dumped\r\n");
    419421            else if (rc == 0x00011176 || rc == ERROR_INVALID_PARAMETER) /* first is actual, 2nd is docs */
    420                 PRINT_C("Process dumping was disabled, use DUMPPROC to enable it.\r\n");
     422                PRINT_C("Process dumping was disabled, use DUMPPROC / PROCDUMP to enable it.\r\n");
    421423            else
    422424            {
Note: See TracChangeset for help on using the changeset viewer.