Ignore:
Timestamp:
Oct 30, 2011, 5:31:01 PM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

OS/2: Make qFatal() call LIBC abort() instead of exit(1).

In kLIBC, this will cause "INT 3" to be generated if
LIBC_BREAKPOINT_ABORT is set which is useful for debugging.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/corelib/global/qglobal.cpp

    r846 r1099  
    24402440#elif (defined(Q_OS_UNIX) || defined(Q_CC_MINGW))
    24412441        abort(); // trap; generates core dump
     2442
     2443
    24422444#else
    24432445        exit(1); // goodbye cruel world
Note: See TracChangeset for help on using the changeset viewer.