extern long vmaddr(Vmalloc_t *, void *);
- extern int vmset(Vmalloc_t *, int, int);
-
extern void *vmdbwatch(void *);
extern int vmdbcheck(Vmalloc_t *);
<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" />
<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>
+++ /dev/null
-/* $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;
-}