Rename inferior_list_entry uses from "head" to "entry" for consistency.
* dll.h (struct dll_info): Add comment. * gdbthread.h (struct thread_info): Add comment. (current_ptid): Simplify. * inferiors.c (add_process): Update. (remove_process): Update. * inferiors.h (struct process_info): Rename member "head" to "entry". * linux-low.c (delete_lwp): Update. (add_lwp): Update. (last_thread_of_process_p): Update. (kill_one_lwp_callback, linux_kill): Update. (status_pending_p_callback): Update. (wait_for_sigstop): Update. Simplify read of ptid. (start_step_over): Update. * linux-low.h (ptid_of, pid_of, lwpid_of): Update. (get_lwp_thread): Update. (struct lwp_info): Rename member "head" to "entry". * regcache.h (inferior_list_entry): Delete. * server.c (kill_inferior_callback): Update. (detach_or_kill_inferior_callback): Update. (print_started_pid): Update. (print_attached_pid): Update. (process_serial_event): Simplify read of ptid. * thread-db.c (thread_db_create_event): Update. (thread_db_get_tls_address): Update. * win32-low.c (current_inferior_ptid): Simplify.
This commit is contained in:
parent
399ebc3d1e
commit
80894984a6
11 changed files with 65 additions and 29 deletions
|
@ -223,19 +223,19 @@ struct linux_target_ops
|
|||
|
||||
extern struct linux_target_ops the_low_target;
|
||||
|
||||
#define ptid_of(proc) ((proc)->head.id)
|
||||
#define pid_of(proc) ptid_get_pid ((proc)->head.id)
|
||||
#define lwpid_of(proc) ptid_get_lwp ((proc)->head.id)
|
||||
#define ptid_of(proc) ((proc)->entry.id)
|
||||
#define pid_of(proc) ptid_get_pid ((proc)->entry.id)
|
||||
#define lwpid_of(proc) ptid_get_lwp ((proc)->entry.id)
|
||||
|
||||
#define get_lwp(inf) ((struct lwp_info *)(inf))
|
||||
#define get_thread_lwp(thr) (get_lwp (inferior_target_data (thr)))
|
||||
#define get_lwp_thread(proc) ((struct thread_info *) \
|
||||
find_inferior_id (&all_threads, \
|
||||
get_lwp (proc)->head.id))
|
||||
get_lwp (proc)->entry.id))
|
||||
|
||||
struct lwp_info
|
||||
{
|
||||
struct inferior_list_entry head;
|
||||
struct inferior_list_entry entry;
|
||||
|
||||
/* If this flag is set, the next SIGSTOP will be ignored (the
|
||||
process will be immediately resumed). This means that either we
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue