Thank you.

I have pushed the commit.

https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=f0769adf6fb5afeb6826982990afad8e6260b1bc

From: Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
Date: Tuesday, 23 June 2026 at 6:37 PM
To: akamath996@gmail.com <akamath996@gmail.com>; tom@tromey.com <tom@tromey.com>; simon.marchi@polymtl.ca <simon.marchi@polymtl.ca>
Cc: gdb-patches@sourceware.org <gdb-patches@sourceware.org>; SANGAMESH MALLAYYA <sangamesh.swamy@in.ibm.com>; Aditya Kamath <Aditya.Kamath1@ibm.com>
Subject: Re: [PATCH] Make target shareable accross fork inferiors in AIX.

Aditya Vidyadhar Kamath <akamath996@gmail.com> 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