]> granicus.if.org Git - graphviz/commitdiff
remove unused vmset API
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 5 Jul 2020 23:40:24 +0000 (16:40 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 6 Jul 2020 00:15:35 +0000 (17:15 -0700)
lib/vmalloc/CMakeLists.txt
lib/vmalloc/Makefile.am
lib/vmalloc/vmalloc.h
lib/vmalloc/vmalloc.vcxproj
lib/vmalloc/vmalloc.vcxproj.filters
lib/vmalloc/vmset.c [deleted file]

index 0b8734def9ff224f3b3c98dc632e5ba62f93982b..1fd463f49de9aa10392290e310850a9fc86de6c0 100644 (file)
@@ -12,7 +12,6 @@ add_library(vmalloc STATIC
     vmdcheap.c
     vmopen.c
     vmprivate.c
-    vmset.c
     vmstat.c
     vmstrdup.c
     vmwalk.c
index 941ef6eb95777c24176b5903ec9a8734af1fbdb3..056500f63370ce225b23cb00a0dd6d275b8f1dde 100644 (file)
@@ -6,7 +6,7 @@ noinst_LTLIBRARIES = libvmalloc_C.la
 
 libvmalloc_C_la_SOURCES = vmbest.c vmclear.c vmclose.c vmdcheap.c \
        vmopen.c vmprivate.c \
-       vmset.c vmstat.c vmstrdup.c \
+       vmstat.c vmstrdup.c \
        vmwalk.c
 
 EXTRA_DIST = README vmalloc.vcxproj*
index dbd816ab2fdb3826ff31e680eccdbef687a498b2..181494a967f66e48240caa7ea98dec2228c06d3c 100644 (file)
@@ -117,8 +117,6 @@ extern "C" {
 
     extern long vmaddr(Vmalloc_t *, void *);
 
-    extern int vmset(Vmalloc_t *, int, int);
-
     extern void *vmdbwatch(void *);
     extern int vmdbcheck(Vmalloc_t *);
 
index 8158a667dac4c4eea2043deac0d8a7db8f0b5f98..3371f531b1430327a8eb8a646a01c7abb10ae418 100644 (file)
     <ClCompile Include="vmdcheap.c" />
     <ClCompile Include="vmopen.c" />
     <ClCompile Include="vmprivate.c" />
-    <ClCompile Include="vmset.c" />
     <ClCompile Include="vmstat.c" />
     <ClCompile Include="vmstrdup.c" />
     <ClCompile Include="vmwalk.c" />
index 8fba3e30172e06cac7d148d679949086a587fbde..8692a8a67a01b452308cf40319340513decd142b 100644 (file)
@@ -41,9 +41,6 @@
     <ClCompile Include="vmprivate.c">
       <Filter>Source Files</Filter>
     </ClCompile>
-    <ClCompile Include="vmset.c">
-      <Filter>Source Files</Filter>
-    </ClCompile>
     <ClCompile Include="vmstat.c">
       <Filter>Source Files</Filter>
     </ClCompile>
diff --git a/lib/vmalloc/vmset.c b/lib/vmalloc/vmset.c
deleted file mode 100644 (file)
index 9751a16..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/* $Id$ $Revision$ */
-/* vim:set shiftwidth=4 ts=8: */
-
-/*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property 
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: See CVS logs. Details at http://www.graphviz.org/
- *************************************************************************/
-
-#include       "vmhdr.h"
-
-
-/*     Set the control flags for a region.
-**
-**     Written by Kiem-Phong Vo, kpv@research.att.com, 01/16/94.
-*/
-/**
- * @param vm region being worked on
- * @param flags flags must be in VM_FLAGS
- * @param on !=0 if turning on, else turning off
- */
-int vmset(reg Vmalloc_t * vm, int flags, int on)
-{
-    reg int mode;
-    reg Vmdata_t *vd = vm->data;
-
-    if (flags == 0 && on == 0)
-       return vd->mode;
-
-    if (!(vd->mode & VM_TRUST)) {
-       if (ISLOCK(vd, 0))
-           return 0;
-       SETLOCK(vd, 0);
-    }
-
-    mode = vd->mode;
-
-    if (on)
-       vd->mode |= (flags & VM_FLAGS);
-    else
-       vd->mode &= ~(flags & VM_FLAGS);
-
-    if (vd->mode & (VM_TRACE | VM_MTDEBUG))
-       vd->mode &= ~VM_TRUST;
-
-    CLRLOCK(vd, 0);
-
-    return mode;
-}