Sourceware Bugzilla – Attachment 8668 Details for
Bug 19048
malloc: arena free list can become cyclic, increasing contention
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
arena_test.pl
arena_test.pl (text/plain), 412 bytes, created by
Paulo Andrade
on 2015-10-01 21:18:45 UTC
(
hide
)
Description:
arena_test.pl
Filename:
MIME Type:
Creator:
Paulo Andrade
Created:
2015-10-01 21:18:45 UTC
Size:
412 bytes
patch
obsolete
>#!/bin/env perl > >use warnings; >use FileHandle; >use IPC::Open2; > >my $pid = $ARGV[0]; > >my $gdb = open2(*RD, *WD, "/usr/bin/gdb -q -p $pid"); >while (<RD>) { > last if (m/.* in .*/); >} >print(WD "thread apply all p/x __libc_tsd_MALLOC\n"); >while (<RD>) { > last if (m/^\(gdb\)/); >} >print(WD "quit\n"); >while (<RD>) { > if (m/\$.* = (\S+)/) { > print("$1\n"); > } > last if (m/^\(gdb\)/); >} >waitpid($gdb, 0);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 19048
:
8666
|
8667
| 8668 |
8669
|
8672
|
8674
|
8700
|
8718
|
8719