Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Pedro Alves <pedro@palves.net>
To: Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>,
	gdb-patches@sourceware.org
Cc: guinevere@redhat.com, eliz@gnu.org
Subject: Re: [PATCH v3 1/2] gdb: pass info_threads_opts to print_thread_info_1
Date: Thu, 24 Apr 2025 19:09:47 +0100	[thread overview]
Message-ID: <8a1a0372-a24d-4580-adc3-fc48b1d260f8@palves.net> (raw)
In-Reply-To: <bb273ed316cfb528aa02d0786d02522054cdb6fc.1743772892.git.tankut.baris.aktemur@intel.com>

On 2025-04-04 14:36, Tankut Baris Aktemur wrote:

>  /* Helper for print_thread_info.  Returns true if THR should be
>     printed.  If REQUESTED_THREADS, a list of GDB ids/ranges, is not
>     NULL, only print THR if its ID is included in the list.  GLOBAL_IDS
> @@ -1046,11 +1064,13 @@ pc_in_thread_step_range (CORE_ADDR pc, struct thread_info *thread)
>     is a thread from the process PID.  Otherwise, threads from all
>     attached PIDs are printed.  If both REQUESTED_THREADS is not NULL
>     and PID is not -1, then the thread is printed if it belongs to the
> -   specified process.  Otherwise, an error is raised.  */
> +   specified process.  Otherwise, an error is raised.  OPTS is the
> +   options of the "info threads" command.  */
>  
>  static bool
>  should_print_thread (const char *requested_threads, int default_inf_num,
> -		     int global_ids, int pid, struct thread_info *thr)
> +		     int global_ids, int pid, thread_info *thr,
> +		     info_threads_opts opts)

Would you mind making that argument be the one after "requested_threads"?  I.e.,
make it the second argument.  That is so that both user-input arguments are next to
one another.  And make it a const ref, as this structure will grow
other fields and become larger.  I.e., write:

static bool
should_print_thread (const char *requested_threads, 
                     const info_threads_opts &opts,
                     int default_inf_num,
                     ...

Same logic for the other functions.

>      /* This end scope restores the current thread and the frame
> @@ -1322,27 +1342,10 @@ void
>  print_thread_info (struct ui_out *uiout, const char *requested_threads,
>  		   int pid)
>  {
> -  print_thread_info_1 (uiout, requested_threads, 1, pid, 0);
> +  info_threads_opts opts {false};

This can be just:

   info_threads_opts opts;

as the boolean field has an in-class initializer.

With that it LGTM.

Pedro Alves


  reply	other threads:[~2025-04-24 18:10 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-05  9:19 [PATCH 0/3] Option to show stopped threads only Tankut Baris Aktemur via Gdb-patches
2023-04-05  9:20 ` [PATCH 1/3] gdb: pass info_threads_opts to print_thread_info_1 Tankut Baris Aktemur via Gdb-patches
2023-04-05  9:20 ` [PATCH 2/3] gdb, doc: add the missing '-gid' option to 'info threads' Tankut Baris Aktemur via Gdb-patches
2023-04-05  9:56   ` Eli Zaretskii via Gdb-patches
2023-04-05 10:12     ` Aktemur, Tankut Baris via Gdb-patches
2023-04-05  9:20 ` [PATCH 3/3] gdb: add a '-stopped' option to "info threads" Tankut Baris Aktemur via Gdb-patches
2023-04-05 10:00   ` Eli Zaretskii via Gdb-patches
2023-04-05 10:19     ` Aktemur, Tankut Baris via Gdb-patches
2023-04-05 10:50       ` Eli Zaretskii via Gdb-patches
2023-04-05 11:31         ` Aktemur, Tankut Baris via Gdb-patches
2023-04-05 11:56           ` Eli Zaretskii via Gdb-patches
2025-04-24 14:50           ` Pedro Alves
2025-03-18 18:04 ` [PATCH v2 0/2] Option to show stopped threads only Tankut Baris Aktemur
2025-03-18 18:05   ` [PATCH v2 1/2] gdb: pass info_threads_opts to print_thread_info_1 Tankut Baris Aktemur
2025-03-18 18:05   ` [PATCH v2 2/2] gdb: add a '-stopped' option to "info threads" Tankut Baris Aktemur
2025-03-28 16:38   ` [PATCH v2 0/2] Option to show stopped threads only Guinevere Larsen
2025-04-04 13:39     ` Aktemur, Tankut Baris
2025-04-04 13:36 ` [PATCH v3 " Tankut Baris Aktemur
2025-04-04 13:36   ` [PATCH v3 1/2] gdb: pass info_threads_opts to print_thread_info_1 Tankut Baris Aktemur
2025-04-24 18:09     ` Pedro Alves [this message]
2025-04-04 13:36   ` [PATCH v3 2/2] gdb: add a '-stopped' option to "info threads" Tankut Baris Aktemur
2025-04-24 19:23     ` Pedro Alves
2025-05-05 16:17       ` Aktemur, Tankut Baris
2025-04-23  8:00   ` [PATCH v3 0/2] Option to show stopped threads only Aktemur, Tankut Baris
2025-04-24 17:53   ` Pedro Alves
2025-05-05 16:19   ` [PATCH v4 0/3] Option to show stopped/running " Tankut Baris Aktemur
2025-05-05 16:19     ` [PATCH v4 1/3] gdb: pass info_threads_opts to print_thread_info_1 Tankut Baris Aktemur
2025-05-05 16:19     ` [PATCH v4 2/3] gdb: update "info threads" output when no threads match the arguments Tankut Baris Aktemur
2025-05-05 17:19       ` Eli Zaretskii
2025-05-05 16:19     ` [PATCH v4 3/3] gdb: add '-stopped' and '-running' options to "info threads" Tankut Baris Aktemur
2025-05-05 17:21       ` Eli Zaretskii
2025-05-09 20:54     ` [PATCH v4 0/3] Option to show stopped/running threads only Pedro Alves

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8a1a0372-a24d-4580-adc3-fc48b1d260f8@palves.net \
    --to=pedro@palves.net \
    --cc=eliz@gnu.org \
    --cc=gdb-patches@sourceware.org \
    --cc=guinevere@redhat.com \
    --cc=tankut.baris.aktemur@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox