Modernize configure.ac's
[deliverable/binutils-gdb.git] / gdb / aix-thread.c
index e97f793911a5cd797086501891d21154d0b31ef8..11140466cc6e065d306f49f9305f6228c1b47239 100644 (file)
@@ -1,6 +1,6 @@
 /* Low level interface for debugging AIX 4.3+ pthreads.
 
-   Copyright (C) 1999-2015 Free Software Foundation, Inc.
+   Copyright (C) 1999-2016 Free Software Foundation, Inc.
    Written by Nick Duffek <nsd@redhat.com>.
 
    This file is part of GDB.
@@ -703,7 +703,7 @@ sync_threadlists (void)
 
   pcount = 0;
   psize = 1;
-  pbuf = (struct pd_thread *) xmalloc (psize * sizeof *pbuf);
+  pbuf = XNEWVEC (struct pd_thread, psize);
 
   for (cmd = PTHDB_LIST_FIRST;; cmd = PTHDB_LIST_NEXT)
     {
@@ -740,7 +740,7 @@ sync_threadlists (void)
 
   gcount = 0;
   iterate_over_threads (giter_count, &gcount);
-  g = gbuf = (struct thread_info **) xmalloc (gcount * sizeof *gbuf);
+  g = gbuf = XNEWVEC (struct thread_info *, gcount);
   iterate_over_threads (giter_accum, &g);
   qsort (gbuf, gcount, sizeof *gbuf, gcmp);
 
@@ -757,7 +757,7 @@ sync_threadlists (void)
       else if (gi == gcount)
        {
          thread = add_thread (ptid_build (infpid, 0, pbuf[pi].pthid));
-         thread->priv = xmalloc (sizeof (struct private_thread_info));
+         thread->priv = XNEW (struct private_thread_info);
          thread->priv->pdtid = pbuf[pi].pdtid;
          thread->priv->tid = pbuf[pi].tid;
          pi++;
@@ -789,7 +789,7 @@ sync_threadlists (void)
          else
            {
              thread = add_thread (pptid);
-             thread->priv = xmalloc (sizeof (struct private_thread_info));
+             thread->priv = XNEW (struct private_thread_info);
              thread->priv->pdtid = pdtid;
              thread->priv->tid = tid;
              pi++;
This page took 0.024499 seconds and 4 git commands to generate.