/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
*
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "alloc.h"
#include "out.h"
#include "stats.h"
/* room to store size, possibly more to maintain alignment for long longs */
#define HDRSIZ sizeof (long long)
static int totalcount;
void
alloc_init(void)
{
}
void
alloc_fini(void)
{
mt = Malloctotal;
mc = Malloccount;
Malloctotal = NULL;
Malloccount = NULL;
}
/*
* alloc_malloc -- a malloc() with checks
*
* this routine is typically called via the MALLOC() macro in alloc.h
*/
/*ARGSUSED*/
void *
{
char *retval;
/* retval can't be NULL since fmd_hdl_alloc() sleeps for memory */
if (Malloctotal)
if (Malloccount)
return ((void *)retval);
}
/*
* alloc_realloc -- a realloc() with checks
*
* this routine is typically called via the REALLOC() macro in alloc.h
*/
void *
{
sizeof (osize));
/* now we have the new memory, copy in the old contents */
/* don't need the old memory anymore */
}
return (retval);
}
/*
* alloc_strdup -- a strdup() with checks
*
* this routine is typically called via the STRDUP() macro in alloc.h
*/
char *
{
return (retval);
}
/*
* alloc_free -- a free() with checks
*
* this routine is typically called via the FREE() macro in alloc.h
*/
/*ARGSUSED*/
void
{
/* nothing to check in this version */
if (Freetotal)
if (Freecount)
}
int
{
return (totalcount);
}
/*
* variants that don't maintain size in header - saves space
*/
void *
{
char *retval;
if (Malloctotal)
if (Malloccount)
totalcount += nbytes;
return ((void *)retval);
}
void
{
if (Freetotal)
if (Freecount)
totalcount -= size;
}