Thank you. I have pushed the commit. https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=f0769adf6fb5afeb6826982990afad8e6260b1bc From: Ulrich Weigand Date: Tuesday, 23 June 2026 at 6:37 PM To: akamath996@gmail.com ; tom@tromey.com ; simon.marchi@polymtl.ca Cc: gdb-patches@sourceware.org ; SANGAMESH MALLAYYA ; Aditya Kamath Subject: Re: [PATCH] Make target shareable accross fork inferiors in AIX. Aditya Vidyadhar Kamath wrote: >diff --git a/gdb/rs6000-aix-nat.c b/gdb/rs6000-aix-nat.c >index 57eb428cc37..54039d3dc02 100644 >--- a/gdb/rs6000-aix-nat.c >+++ b/gdb/rs6000-aix-nat.c >@@ -101,6 +101,11 @@ class rs6000_nat_target final : public >inf_ptrace_target > support. */ > void follow_fork (inferior *, ptid_t, target_waitkind, bool, bool) >override; > >+ /* Keep AIX as well sharable across inferiors while following >fork() >+ like child process in sync with Linux. */ >+ bool is_shareable () override >+ { return true; } >+ This is OK. Thanks, Ulrich