vmdcheap.c
vmopen.c
vmprivate.c
- vmregion.c
vmset.c
vmstat.c
vmstrdup.c
libvmalloc_C_la_SOURCES = vmbest.c vmclear.c vmclose.c vmdcheap.c \
vmopen.c vmprivate.c \
- vmregion.c vmset.c vmstat.c vmstrdup.c \
+ vmset.c vmstat.c vmstrdup.c \
vmwalk.c
EXTRA_DIST = README vmalloc.vcxproj*
extern long vmaddr(Vmalloc_t *, void *);
- extern Vmalloc_t *vmregion(void *);
extern int vmset(Vmalloc_t *, int, int);
extern void *vmdbwatch(void *);
<ClCompile Include="vmdcheap.c" />
<ClCompile Include="vmopen.c" />
<ClCompile Include="vmprivate.c" />
- <ClCompile Include="vmregion.c" />
<ClCompile Include="vmset.c" />
<ClCompile Include="vmstat.c" />
<ClCompile Include="vmstrdup.c" />
<ClCompile Include="vmprivate.c">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="vmregion.c">
- <Filter>Source Files</Filter>
- </ClCompile>
<ClCompile Include="vmset.c">
<Filter>Source Files</Filter>
</ClCompile>
** file: the file where it was created.
** size: the true byte count of the block
** seg_: should be the same as the previous seg_.
-** This allows the function vmregion() to work.
** magi: magic bytes to detect overwrites.
** data: the actual data block.
** magi: more magic bytes.
+++ /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"
-
-/* Return the containing region of an allocated piece of memory.
-** Beware: this only works with Vmbest and Vmtrace.
-**
-** Written by Kiem-Phong Vo, kpv@research.att.com, 01/16/94.
-*/
-Vmalloc_t *vmregion(reg void * addr)
-{
- return addr ? VM(BLOCK(addr)) : NIL(Vmalloc_t *);
-}