This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFC 30/32] convert to_search_memory


Looks good.

On 01/13/2014 07:12 PM, Tom Tromey wrote:
> @@ -2789,7 +2778,7 @@ find_default_run_target (char *do_mesg)
>    for (t = target_structs; t < target_structs + target_struct_size;
>         ++t)
>      {
> -      if ((*t)->to_can_run && target_can_run (*t))
> +      if ((*t)->to_can_run != delegate_can_run && target_can_run (*t))

OOC, I'm wondering how you envision translating checks
like this into a C++ world?

>  	{
>  	  runable = *t;
>  	  ++count;

-- 
Pedro Alves


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]