mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 15:15:42 +00:00
Remove defaulted 'tid' parameter to ptid_t constructor
I wanted to find, and potentially modify, all the spots where the 'tid' parameter to the ptid_t constructor was used. So, I temporarily removed this parameter and then rebuilt. In order to make it simpler to search through the "real" (nonzero) uses of this parameter, something I knew I'd have to do multiple times, I removed any ", 0" from constructor calls. Co-Authored-By: John Baldwin <jhb@FreeBSD.org>
This commit is contained in:
@@ -190,7 +190,7 @@ agent_run_command (int pid, const char *cmd, int len)
|
||||
{
|
||||
int fd;
|
||||
int tid = agent_get_helper_thread_id ();
|
||||
ptid_t ptid = ptid_t (pid, tid, 0);
|
||||
ptid_t ptid = ptid_t (pid, tid);
|
||||
|
||||
int ret = target_write_memory (ipa_sym_addrs.addr_cmd_buf,
|
||||
(gdb_byte *) cmd, len);
|
||||
|
||||
Reference in New Issue
Block a user