Hi -
Some patches for the 0.183 release. This and PR27092 (low memory)
will be important, maybe PR27277 coming too.
commit d1608c045c46d2ab3d42ef668474e365c4b54e84 (HEAD -> master)
Author: Frank Ch. Eigler
Date: Tue Feb 2 16:49:19 2021 -0500
PR27323 debuginfod: improve query concurrency
https://sourceware.org/bugzilla/show_bug.cgi?id=27323
Bug ID: 27323
Summary: concurrency during grooming/scanning
Product: elfutils
Version: unspecified
Status: NEW
Severity: normal
Priority: P2
Component: debugi
On 29/01/2021 21:48, Mark Wielaard wrote:
Hi Timm,
On Fri, 2021-01-08 at 09:13 +0100, Timm Bäder via Elfutils-devel wrote:
Get rid of a nested function this way.
Skipping this one for now since I don't believe I understand this code.
Could you explain what the code does what it does and why i
From: Timm Bäder
advance_pc() uses show_op_index to save whether the current op_index is
> 0 OR the new op_index is > 0.
The new op index is calculated via
new_op_index = (op_index + op_advance) % max_ops_per_instr;
since all of the variables involved are unsigned,
new_op_index >= op_index is
On 01/02/2021 15:21, Mark Wielaard wrote:
On Fri, 2021-01-08 at 09:16 +0100, Timm Bäder via Elfutils-devel wrote:
here another round for src/readelf.c. I think they are simple, but I'm
not happy with the advance_pc() commit. I'm open for suggestions here
but I can't come up with something better