diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-11 18:13:55 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-11 18:13:55 +0000 |
commit | e2e0b3e57f11bb2539724fc955af7e22380613c1 (patch) | |
tree | 083dc9dbd94321b678a3b304e1ffbfdcbd7c180d /gdb/inf-ttrace.c | |
parent | e91cdea724e666f926530f16ab9f9e9972fdd7ef (diff) | |
download | gdb-e2e0b3e57f11bb2539724fc955af7e22380613c1.zip gdb-e2e0b3e57f11bb2539724fc955af7e22380613c1.tar.gz gdb-e2e0b3e57f11bb2539724fc955af7e22380613c1.tar.bz2 |
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
Diffstat (limited to 'gdb/inf-ttrace.c')
-rw-r--r-- | gdb/inf-ttrace.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/gdb/inf-ttrace.c b/gdb/inf-ttrace.c index 5f83712..1685af8 100644 --- a/gdb/inf-ttrace.c +++ b/gdb/inf-ttrace.c @@ -98,17 +98,17 @@ inf_ttrace_enable_syscall_events (pid_t pid) if (ttrace (TT_PROC_GET_EVENT_MASK, pid, 0, (uintptr_t)&tte, sizeof tte, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); tte.tte_events |= (TTEVT_SYSCALL_ENTRY | TTEVT_SYSCALL_RETURN); if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0, (uintptr_t)&tte, sizeof tte, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); if (ttrace (TT_PROC_GET_FIRST_LWP_STATE, pid, 0, (uintptr_t)&tts, sizeof tts, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); if (tts.tts_flags & TTS_INSYSCALL) inf_ttrace_num_lwps_in_syscall++; @@ -127,13 +127,13 @@ inf_ttrace_disable_syscall_events (pid_t pid) if (ttrace (TT_PROC_GET_EVENT_MASK, pid, 0, (uintptr_t)&tte, sizeof tte, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); tte.tte_events &= ~(TTEVT_SYSCALL_ENTRY | TTEVT_SYSCALL_RETURN); if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0, (uintptr_t)&tte, sizeof tte, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); inf_ttrace_num_lwps_in_syscall = 0; } @@ -190,7 +190,7 @@ inf_ttrace_add_page (pid_t pid, CORE_ADDR addr) if (ttrace (TT_PROC_GET_MPROTECT, pid, 0, addr, 0, (uintptr_t)&prot) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); page = XMALLOC (struct inf_ttrace_page); page->addr = addr; @@ -209,7 +209,7 @@ inf_ttrace_add_page (pid_t pid, CORE_ADDR addr) { if (ttrace (TT_PROC_SET_MPROTECT, pid, 0, addr, pagesize, prot & ~PROT_WRITE) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); } } @@ -249,7 +249,7 @@ inf_ttrace_remove_page (pid_t pid, CORE_ADDR addr) { if (ttrace (TT_PROC_SET_MPROTECT, pid, 0, addr, pagesize, page->prot) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); } inf_ttrace_page_dict.count--; @@ -283,7 +283,7 @@ inf_ttrace_mask_page_protections (pid_t pid, int prot) { if (ttrace (TT_PROC_SET_MPROTECT, pid, 0, page->addr, pagesize, page->prot & ~prot) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); page = page->next; } @@ -379,7 +379,7 @@ inf_ttrace_stopped_by_watchpoint (void) { if (ttrace (TT_LWP_GET_STATE, pid, lwpid, (uintptr_t)&tts, sizeof tts, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); if (tts.tts_event == TTEVT_SIGNAL && tts.tts_u.tts_signal.tts_signo == SIGBUS) @@ -435,15 +435,15 @@ inf_ttrace_me (void) /* "Trace me, Dr. Memory!" */ if (ttrace (TT_PROC_SETTRC, 0, 0, 0, TT_VERSION, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); /* Tell our parent that we are ready to be traced. */ if (write (inf_ttrace_pfd1[1], &c, sizeof c) != sizeof c) - perror_with_name ("write"); + perror_with_name (("write")); /* Wait until our parent has set the initial event mask. */ if (read (inf_ttrace_pfd2[0], &c, sizeof c) != sizeof c) - perror_with_name ("read"); + perror_with_name (("read")); do_cleanups (old_chain); } @@ -459,7 +459,7 @@ inf_ttrace_him (int pid) /* Wait until our child is ready to be traced. */ if (read (inf_ttrace_pfd1[0], &c, sizeof c) != sizeof c) - perror_with_name ("read"); + perror_with_name (("read")); /* Set the initial event mask. */ memset (&tte, 0, sizeof (tte)); @@ -471,11 +471,11 @@ inf_ttrace_him (int pid) tte.tte_opts = TTEO_NOSTRCCHLD; if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0, (uintptr_t)&tte, sizeof tte, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); /* Tell our child that we have set the initial event mask. */ if (write (inf_ttrace_pfd2[1], &c, sizeof c) != sizeof c) - perror_with_name ("write"); + perror_with_name (("write")); do_cleanups (old_chain); @@ -526,7 +526,7 @@ inf_ttrace_kill_inferior (void) return; if (ttrace (TT_PROC_EXIT, pid, 0, 0, 0, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); /* ??? Is it necessary to call ttrace_wait() here? */ target_mourn_inferior (); } @@ -596,7 +596,7 @@ inf_ttrace_attach (char *args, int from_tty) gdb_assert (inf_ttrace_num_lwps_in_syscall == 0); if (ttrace (TT_PROC_ATTACH, pid, 0, TT_KILL_ON_EXIT, TT_VERSION, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); attach_flag = 1; /* Set the initial event mask. */ @@ -609,7 +609,7 @@ inf_ttrace_attach (char *args, int from_tty) tte.tte_opts = TTEO_NOSTRCCHLD; if (ttrace (TT_PROC_SET_EVENT_MASK, pid, 0, (uintptr_t)&tte, sizeof tte, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); inferior_ptid = pid_to_ptid (pid); push_target (ttrace_ops_hack); @@ -640,7 +640,7 @@ inf_ttrace_detach (char *args, int from_tty) /* ??? The HP-UX 11.0 ttrace(2) manual page doesn't mention that we can pass a signal number here. Does this really work? */ if (ttrace (TT_PROC_DETACH, pid, 0, 0, sig, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); inf_ttrace_num_lwps = 0; inf_ttrace_num_lwps_in_syscall = 0; @@ -658,7 +658,7 @@ inf_ttrace_resume_callback (struct thread_info *info, void *arg) lwpid_t lwpid = ptid_get_lwp (info->ptid); if (ttrace (TT_LWP_CONTINUE, pid, lwpid, TT_NOPC, 0, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); } return 0; @@ -679,7 +679,7 @@ inf_ttrace_resume (ptid_t ptid, int step, enum target_signal signal) } if (ttrace (request, pid, lwpid, TT_NOPC, sig, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); if (ptid_equal (ptid, minus_one_ptid) && inf_ttrace_num_lwps > 0) { @@ -821,7 +821,7 @@ inf_ttrace_wait (ptid_t ptid, struct target_waitstatus *ourstatus) /* Make sure all threads within the process are stopped. */ if (ttrace (TT_PROC_STOP, tts.tts_pid, 0, 0, 0, 0) == -1) - perror_with_name ("ttrace"); + perror_with_name (("ttrace")); /* HACK: Twiddle INFERIOR_PTID such that the initial thread of a process isn't recognized as a new thread. */ |