Re: [PATCH 18/63] dyndbg: add/use for_subvec() to reduce boilerplate

2025-03-16 Thread jim . cromie
On Tue, Feb 25, 2025 at 7:18 AM Louis Chauvet wrote: > > > > Le 25/01/2025 à 07:45, Jim Cromie a écrit : > > add for_subvec() macro to encapsulate a for-loop pattern thats used > > repeatedly to iterate over a boxed.vector of N elements. > > > > Signed-off-by: Jim Cromie > > Hi Jim, > > Do you th

Re: [PATCH 18/63] dyndbg: add/use for_subvec() to reduce boilerplate

2025-02-25 Thread Louis Chauvet
Le 25/01/2025 à 07:45, Jim Cromie a écrit : add for_subvec() macro to encapsulate a for-loop pattern thats used repeatedly to iterate over a boxed.vector of N elements. Signed-off-by: Jim Cromie Hi Jim, Do you think it is possible to move this patch earlier in the series, so you can use

[PATCH 18/63] dyndbg: add/use for_subvec() to reduce boilerplate

2025-01-24 Thread Jim Cromie
add for_subvec() macro to encapsulate a for-loop pattern thats used repeatedly to iterate over a boxed.vector of N elements. Signed-off-by: Jim Cromie --- lib/dynamic_debug.c | 30 ++ 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/lib/dynamic_debug.c b