[Webkit-unassigned] [Bug 42756] Crash in privateCompileCTIMachineTrampolines() on Intel Atom D510 processor

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Nov 26 00:12:34 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=42756





--- Comment #18 from Zoltan Herczeg <zherczeg at webkit.org>  2010-11-26 00:12:34 PST ---
(In reply to comment #16)
> Unfortunately I don't know C and cannot write testcase to allocate 2Gb via mmap .__. Testcase with malloc() works without crashes.

mmap_test.c:

#include <stdio.h>
#include <sys/mman.h>

int main() {
    printf("%p\n", mmap(0, 2ul * 1024ul * 1024ul * 1024ul,
        PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0));
    return 0;
}

Compiling: gcc mmap_test.c -o mmap_test

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list