]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* thread.c (thread_switch): Define as static.
authorJim Kingdon <jkingdon@engr.sgi.com>
Mon, 2 Aug 1993 22:13:32 +0000 (22:13 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Mon, 2 Aug 1993 22:13:32 +0000 (22:13 +0000)
(add_thread): Cast return value from xmalloc.

gdb/ChangeLog
gdb/thread.c

index bf86119d3970711ebc8366e18434117cf5f7b627..b3f69fb1cb7d0753354074fdb4d9b73c55c6e2ec 100644 (file)
@@ -1,5 +1,8 @@
 Mon Aug  2 12:06:00 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * thread.c (thread_switch): Define as static.
+       (add_thread): Cast return value from xmalloc.
+
        * gdbtypes.c (fill_in_vptr_fieldno): Call check_stub_type.
        * gdbtypes.{c,h}: Improve comments on vptr_fieldno.
 
index 207687a84226aa24344e0504c5371531ea0f1882..ea5173f7deb7db7cb680933c3413fde22c6b1484 100644 (file)
@@ -76,7 +76,7 @@ add_thread (pid)
 {
   struct thread_info *tp;
 
-  tp = xmalloc (sizeof (struct thread_info));
+  tp = (struct thread_info *) xmalloc (sizeof (struct thread_info));
 
   tp->pid = pid;
   tp->num = ++highest_thread_num;
@@ -180,7 +180,7 @@ info_threads_command (arg, from_tty)
 
 /* Switch from one thread to another. */
 
-void
+static void
 thread_switch (pid)
      int pid;
 {