* remote.c (remote_start_remote): Replace PTR with void pointer.
authorAndrew Cagney <cagney@redhat.com>
Sun, 19 May 2002 16:56:03 +0000 (16:56 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sun, 19 May 2002 16:56:03 +0000 (16:56 +0000)
(sigint_remote_twice_token, sigint_remote_token): Ditto.  Make
static.

gdb/ChangeLog
gdb/remote.c

index 623c9b24250f0e9c6c8bca947bce4177c64e1675..b39096256be7aca3d2cd46388ab975275ddf8d4a 100644 (file)
@@ -1,3 +1,9 @@
+2002-05-19  Andrew Cagney  <ac131313@redhat.com>
+
+       * remote.c (remote_start_remote): Replace PTR with void pointer.
+       (sigint_remote_twice_token, sigint_remote_token): Ditto.  Make
+       static.
+
 2002-05-18  Andrew Cagney  <ac131313@redhat.com>
 
        * gdb_indent.sh: Allow the script to be run in the sim directory.
index c3f40fed1f986fe8886390f26425de0861eb63d3..94277325b4681dfa3039004f2769b9fcaec3df59 100644 (file)
@@ -86,7 +86,7 @@ static void remote_resume (ptid_t ptid, int step,
                            enum target_signal siggnal);
 static void remote_async_resume (ptid_t ptid, int step,
                                 enum target_signal siggnal);
-static int remote_start_remote (PTR);
+static int remote_start_remote (void *);
 
 static void remote_open (char *name, int from_tty);
 static void remote_async_open (char *name, int from_tty);
@@ -970,8 +970,8 @@ show_remote_protocol_binary_download_cmd (char *args,
 
 
 /* Tokens for use by the asynchronous signal handlers for SIGINT */
-PTR sigint_remote_twice_token;
-PTR sigint_remote_token;
+static void *sigint_remote_twice_token;
+static void *sigint_remote_token;
 
 /* These are pointers to hook functions that may be set in order to
    modify resume/wait behavior for a particular architecture.  */
@@ -2114,7 +2114,7 @@ remote_start_remote_dummy (void *dummy)
 }
 
 static int
-remote_start_remote (PTR dummy)
+remote_start_remote (void *dummy)
 {
   immediate_quit++;            /* Allow user to interrupt it */
 
This page took 0.030299 seconds and 4 git commands to generate.