⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 238477 in webkit


Ignore:
Timestamp:
Nov 25, 2018, 8:22:46 AM (8 years ago)
Author:
Michael Catanzaro
Message:

Unreviewed, rolling out r238469.

Broke the build

Reverted changeset:

"CRASH() should call abort() except on Darwin and in developer
builds"
https://bugs.webkit.org/show_bug.cgi?id=184408
https://trac.webkit.org/changeset/238469

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r238470 r238477  
     12018-11-25  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Unreviewed, rolling out r238469.
     4
     5        Broke the build
     6
     7        Reverted changeset:
     8
     9        "CRASH() should call abort() except on Darwin and in developer
     10        builds"
     11        https://bugs.webkit.org/show_bug.cgi?id=184408
     12        https://trac.webkit.org/changeset/238469
     13
    1142018-11-24  Andy Estes  <aestes@apple.com>
    215
  • trunk/Source/WTF/wtf/Assertions.h

    r238469 r238477  
    4545#include <stdbool.h>
    4646#include <stddef.h>
    47 #include <stdlib.h>
    4847#include <wtf/ExportMacros.h>
    4948
     
    241240    __builtin_unreachable(); \
    242241} while (0)
    243 #elif !ENABLE(DEVELOPER_MODE) && !OS(DARWIN)
    244 #define CRASH() abort()
    245242#else
    246243#define CRASH() WTFCrash()
Note: See TracChangeset for help on using the changeset viewer.