Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
/* $XConsortium: vmclear.c /main/2 1996/05/08 20:01:27 drk $ */
/***************************************************************
* *
* AT&T - PROPRIETARY *
* *
* THIS IS PROPRIETARY SOURCE CODE LICENSED BY *
* AT&T CORP. *
* *
* Copyright (c) 1995 AT&T Corp. *
* All Rights Reserved *
* *
* This software is licensed by AT&T Corp. *
* under the terms and conditions of the license in *
* http://www.research.att.com/orgs/ssr/book/reuse *
* *
* This software was created by the *
* Software Engineering Research Department *
* AT&T Bell Laboratories *
* *
* For further information contact *
* gsf@research.att.com *
* *
***************************************************************/
#include "vmhdr.h"
/* Clear out all allocated space.
**
** Written by (Kiem-)Phong Vo, kpv@research.att.com, 01/16/94.
*/
#if __STD_C
vmclear(Vmalloc_t* vm)
#else
vmclear(vm)
Vmalloc_t* vm;
#endif
{
reg Seg_t* seg;
reg Seg_t* next;
reg Block_t* tp;
reg size_t size, s;
reg Vmdata_t* vd = vm->data;
if(!(vd->mode&VM_TRUST) )
{ if(ISLOCK(vd,0))
return -1;
SETLOCK(vd,0);
}
vd->free = vd->wild = NIL(Block_t*);
vd->pool = 0;
if(vd->mode&(VM_MTBEST|VM_MTDEBUG|VM_MTPROFILE) )
{ vd->root = NIL(Block_t*);
for(s = 0; s < S_TINY; ++s)
TINY(vd)[s] = NIL(Block_t*);
for(s = 0; s <= S_CACHE; ++s)
CACHE(vd)[s] = NIL(Block_t*);
}
for(seg = vd->seg; seg; seg = next)
{ next = seg->next;
tp = SEGBLOCK(seg);
size = seg->baddr - ((uchar*)tp) - 2*sizeof(Head_t);
SEG(tp) = seg;
SIZE(tp) = size;
if((vd->mode&(VM_MTLAST|VM_MTPOOL)) )
seg->free = tp;
else
{ SIZE(tp) |= BUSY|JUNK;
LINK(tp) = CACHE(vd)[C_INDEX(SIZE(tp))];
CACHE(vd)[C_INDEX(SIZE(tp))] = tp;
}
tp = BLOCK(seg->baddr);
SEG(tp) = seg;
SIZE(tp) = BUSY;
}
CLRLOCK(vd,0);
return 0;
}