]> git.proxmox.com Git - mirror_frr.git/commitdiff
2004-10-31 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Sun, 31 Oct 2004 16:19:24 +0000 (16:19 +0000)
committerpaul <paul>
Sun, 31 Oct 2004 16:19:24 +0000 (16:19 +0000)
* memory.h: Add MTYPE_THREAD_FUNCNAME and MTYPE_THREAD_STATS
* thread.c: Update stats and funcname alloc/free to use previous
  specific memory type defines

lib/ChangeLog
lib/memory.h
lib/thread.c

index 4d64e2129a9ba1addc32a96a6124a444d2950518..3dbf9ebc6d7a813fce8cb4bf38d8aba9ae584ed2 100644 (file)
@@ -4,6 +4,9 @@
          (vty_serv_un) remove flags.
          (vtysh_accept) close socket if we cant set NONBLOCK. Add flags.
        * keychain.c: Convert some more strtoul users to VTY_GET_INTEGER.
+       * memory.h: Add MTYPE_THREAD_FUNCNAME and MTYPE_THREAD_STATS
+       * thread.c: Update stats and funcname alloc/free to use previous
+         specific memory type defines
 
 2004-10-29 Paul Jakma <paul@dishone.st>
 
index 2f403a145f3af53b9c1c0972e3d63704be794451..1ffda55885192187ec0babc2191da610745afd09 100644 (file)
@@ -34,6 +34,8 @@ enum
   MTYPE_LINK_NODE,
   MTYPE_THREAD,
   MTYPE_THREAD_MASTER,
+  MTYPE_THREAD_STATS,
+  MTYPE_THREAD_FUNCNAME,
   MTYPE_VTY,
   MTYPE_VTY_HIST,
   MTYPE_VTY_OUT_BUF,
index e1625e395f5f53bd37740077bf10cc2020151879..94fdf1f52f2d8916819323871d1054b14ff4b0ce 100644 (file)
@@ -104,10 +104,10 @@ static void*
 cpu_record_hash_alloc (struct cpu_thread_history *a)
 {
   struct cpu_thread_history *new;
-  new = XMALLOC( MTYPE_TMP/*XXX*/, sizeof *new);
-  memset(new, 0, sizeof *new);
+  new = XMALLOC( MTYPE_THREAD_STATS, sizeof *new);
+  memset(new, 0, sizeof (struct cpu_thread_history));
   new->func = a->func;
-  new->funcname = XSTRDUP(MTYPE_TMP/*XXX*/,a->funcname);
+  new->funcname = XSTRDUP(MTYPE_THREAD_FUNCNAME, a->funcname);
   return new;
 }
 
@@ -317,6 +317,7 @@ thread_add_unuse (struct thread_master *m, struct thread *thread)
   assert (thread->prev == NULL);
   assert (thread->type == THREAD_UNUSED);
   thread_list_add (&m->unuse, thread);
+  /* XXX: Should we deallocate funcname here? */
 }
 
 /* Free all unused thread. */
@@ -329,7 +330,7 @@ thread_list_free (struct thread_master *m, struct thread_list *list)
   for (t = list->head; t; t = next)
     {
       next = t->next;
-      XFREE (MTYPE_STRVEC, t->funcname);
+      XFREE (MTYPE_THREAD_FUNCNAME, t->funcname);
       XFREE (MTYPE_THREAD, t);
       list->count--;
       m->alloc--;
@@ -401,7 +402,7 @@ strip_funcname (const char *funcname)
 
   tmp = *e;
   *e = '\0';
-  ret  = XSTRDUP (MTYPE_STRVEC, b);
+  ret  = XSTRDUP (MTYPE_THREAD_FUNCNAME, b);
   *e = tmp;
 
   return ret;
@@ -418,7 +419,7 @@ thread_get (struct thread_master *m, u_char type,
     {
       thread = thread_trim_head (&m->unuse);
       if (thread->funcname)
-        XFREE(MTYPE_STRVEC, thread->funcname);
+        XFREE(MTYPE_THREAD_FUNCNAME, thread->funcname);
     }
   else
     {
@@ -903,7 +904,7 @@ funcname_thread_execute (struct thread_master *m,
   dummy.funcname = strip_funcname (funcname);
   thread_call (&dummy);
 
-  XFREE (MTYPE_STRVEC, dummy.funcname);
+  XFREE (MTYPE_THREAD_FUNCNAME, dummy.funcname);
 
   return NULL;
 }