summaryrefslogtreecommitdiff
path: root/gdb/ser-tcp.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-06-25 19:46:08 +0000
committerAndrew Cagney <cagney@redhat.com>2004-06-25 19:46:08 +0000
commit33885daaa2a1ed3273a652135807ee2776673eff (patch)
tree85525640fcecd74e6185c7a06e16fdc68812c63a /gdb/ser-tcp.c
parent8577f3622e227d9fa0ba20c7c8fb4b60ce446543 (diff)
downloadgdb-33885daaa2a1ed3273a652135807ee2776673eff.tar.gz
2004-06-25 Andrew Cagney <cagney@gnu.org>
* defs.h (deprecated_ui_loop_hook): Deprecated. * wince.c (child_wait): Update. * win32-nat.c (child_wait): Update. * v850ice.c (v850ice_wait): Update. * top.c (deprecated_ui_loop_hook): Update. * serial.h: Update. * ser-unix.c (do_hardwire_readchar, do_hardwire_readchar) (do_unix_readchar): Update. * ser-tcp.c (net_open): Update. * remote-sim.c (gdb_os_poll_quit): Update. * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Update.
Diffstat (limited to 'gdb/ser-tcp.c')
-rw-r--r--gdb/ser-tcp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/ser-tcp.c b/gdb/ser-tcp.c
index 21d84768d9c..de8c4283744 100644
--- a/gdb/ser-tcp.c
+++ b/gdb/ser-tcp.c
@@ -48,7 +48,7 @@ void _initialize_ser_tcp (void);
/* seconds to wait for connect */
#define TIMEOUT 15
-/* how many times per second to poll ui_loop_hook */
+/* how many times per second to poll deprecated_ui_loop_hook */
#define POLL_INTERVAL 2
/* Open a tcp socket */
@@ -132,9 +132,9 @@ net_open (struct serial *scb, const char *name)
/* While we wait for the connect to complete
poll the UI so it can update or the user can
interrupt. */
- if (ui_loop_hook)
+ if (deprecated_ui_loop_hook)
{
- if (ui_loop_hook (0))
+ if (deprecated_ui_loop_hook (0))
{
errno = EINTR;
net_close (scb);