diff options
author | Michael Snyder <msnyder@vmware.com> | 2011-01-07 17:35:27 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2011-01-07 17:35:27 +0000 |
commit | ac74f77061b2c386a31af52bed258d6800217071 (patch) | |
tree | 08726802990a522db8cacde951feeae6b52605dc /gdb/linux-nat.c | |
parent | 06e65f441499bad232064278c41555db0dfd7a01 (diff) | |
download | gdb-ac74f77061b2c386a31af52bed258d6800217071.zip gdb-ac74f77061b2c386a31af52bed258d6800217071.tar.gz gdb-ac74f77061b2c386a31af52bed258d6800217071.tar.bz2 |
2011-01-07 Michael Snyder <msnyder@vmware.com>
* ax-gdb.c: Adjust some long output strings.
* breakpoint.c: Ditto.
* charset.c: Ditto.
* cp-abi.c: Ditto.
* infcall.c: Ditto.
* infrun.c: Ditto.
* linux-nat.c: Ditto.
* solib-pa64.c: Ditto.
* solib-som.c: Ditto.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index e467e9a..ec0433f 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -686,12 +686,11 @@ linux_child_follow_fork (struct target_ops *ops, int follow_child) the parent stays blocked. If we're telling the parent to run in the foreground, the user will not be able to ctrl-c to get back the terminal, effectively hanging the debug session. */ - fprintf_filtered (gdb_stderr, - _("Can not resume the parent process " - "over vfork in the foreground while\n" - "holding the child stopped. " - "Try \"set detach-on-fork\" or " - "\"set schedule-multiple\".\n")); + fprintf_filtered (gdb_stderr, _("\ +Can not resume the parent process over vfork in the foreground while\n\ +holding the child stopped. Try \"set detach-on-fork\" or \ +\"set schedule-multiple\".\n")); + /* FIXME output string > 80 columns. */ return 1; } |