]> granicus.if.org Git - graphviz/commitdiff
remove unused Vmbest
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 11 Jul 2020 21:44:17 +0000 (14:44 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 25 Jul 2020 18:53:10 +0000 (11:53 -0700)
lib/vmalloc/vmalloc.h
lib/vmalloc/vmbest.c

index 93779479784e55067ada461199d8aed8833f2803..62b1b1bd733f5306363405ae5f89462855dd6e54 100644 (file)
@@ -99,8 +99,6 @@ extern "C" {
 #define VM_DISC                4       /* discipline being changed     */
 
 
-    extern Vmethod_t *Vmbest;  /* best allocation              */
-
     extern Vmalloc_t *Vmheap;  /* heap region                  */
     extern Vmalloc_t *Vmregion;        /* malloc region                */
 
index dab3fe55a371bf1c6c9ab22b723ef458551bc951..c76a03db99a7798bda4183444a67d2bd7f5a6688 100644 (file)
@@ -128,14 +128,6 @@ void *bestresize(Vmalloc_t *vm, void *data, size_t size, int type) {
   return NULL;
 }
 
-static Vmethod_t _Vmbest = {
-    bestalloc,
-    bestresize,
-    bestfree,
-    0,
-    VM_MTBEST
-};
-
 /* The heap region */
 static Vmdata_t _Vmdata = {
     VM_MTBEST | VM_TRUST,      /* mode         */
@@ -166,4 +158,3 @@ static Vmalloc_t _Vmheap = {
 
 Vmalloc_t* Vmheap = &_Vmheap;
 Vmalloc_t* Vmregion = &_Vmheap;
-Vmethod_t* Vmbest = &_Vmbest;