RESOLVED FIXED 157682
Runaway malloc memory usage in this simple JSC program
https://bugs.webkit.org/show_bug.cgi?id=157682
Summary Runaway malloc memory usage in this simple JSC program
Geoffrey Garen
Reported 2016-05-13 14:10:54 PDT
Runaway malloc memory usage in this simple JSC program
Attachments
Patch (1.64 KB, patch)
2016-05-13 14:17 PDT, Geoffrey Garen
no flags
Patch (1.64 KB, patch)
2016-05-13 14:20 PDT, Geoffrey Garen
mark.lam: review+
Geoffrey Garen
Comment 1 2016-05-13 14:17:33 PDT
Geoffrey Garen
Comment 2 2016-05-13 14:20:43 PDT
Mark Lam
Comment 3 2016-05-13 14:21:38 PDT
Comment on attachment 278866 [details] Patch r=me
Geoffrey Garen
Comment 4 2016-05-13 14:23:42 PDT
Geoffrey Garen
Comment 5 2016-05-13 15:21:25 PDT
Geoffrey Garen
Comment 6 2016-05-13 15:21:50 PDT
BTW, here is the program: #include <JavaScriptCore/JavaScriptCore.h> #include <stdio.h> #include <sys/time.h> static double currentTime() { struct timeval tv; gettimeofday(&tv, NULL); return tv.tv_sec + tv.tv_usec / 1000. / 1000.; } int main(int argc, char** argv) { JSContextGroupRef group; double before, after; unsigned i; group = JSContextGroupCreate(); before = currentTime(); for (i = 0; i < 100000; ++i) JSGlobalContextRelease(JSGlobalContextCreateInGroup(group, NULL)); after = currentTime(); printf("That took %lf ms.\n", (after - before) * 1000.); return 0; }
Note You need to log in before you can comment on or make changes to this bug.