Changes between Version 13 and Version 14 of WebKitGTK/TrackingMemoryErrors
- Timestamp:
- Oct 5, 2017, 1:28:37 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitGTK/TrackingMemoryErrors
v13 v14 20 20 21 21 {{{ 22 G_SLICE=always-malloc G_DEBUG=gc-friendly,resident-modules valgrind\23 --tool=memcheck --leak-check=full --leak-resolution=high\22 G_SLICE=always-malloc G_DEBUG=gc-friendly,resident-modules Malloc=1 \ 23 valgrind --tool=memcheck --leak-check=full --leak-resolution=high \ 24 24 --num-callers=20 --log-file=vgdump --smc-check=all --trace-children=yes \ 25 25 WebKitBuild/Release/bin/MiniBrowser 26 26 }}} 27 27 28 Here, the interesting bit is ''--trace-children=yes'', which tells valgrind to also hook into any child process spawned by the original program. For WK2 this is required if you want to check memory in the Web process (which you most likely do), otherwise it will only check it in the UI process. 28 Here, the interesting bits are, 29 * ''--trace-children=yes'', which tells Valgrind to also hook into any child process spawned by the original program. For WK2 this is required if you want to check memory in the Web process (which you most likely do), otherwise it will only check it in the UI process. 30 * ''Malloc=1'', setting this environment variable will disable bmalloc, WK's custom memory allocator. bmalloc tries to allocate a large virtual memory region at startup, but this doesn't work when run under Valgrind. 29 31 30 32 Notice that for both WK1 and WK2, the corresponding launcher programs are used instead of the provided script, in order to avoid checking for errors in the script's runtime, which apart from been undesired, will slow down the process even more.