misc.c revision 422418808a6580456c11a891d69016d29dae1440
/*
* 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 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include "misc.h"
#define UMEM_OBJNAME "libumem.so.1"
int umem_debug_level = 0;
int umem_is_standalone = 0;
/*ARGSUSED*/
int
{
umem_debug_level ^= 1;
mdb_printf("umem: debugging is now %s\n",
return (DCMD_OK);
}
/*
* To further confuse the issue, this dmod can run against either
* libumem.so.1 *or* the libstandumem.so linked into kmdb(1M). To figure
* out which one we are working against, we look up "umem_alloc" in both
* libumem.so and the executable.
*
* A further wrinkle is that libumem.so may not yet be loaded into the
* process' address space. That can lead to either the lookup failing, or
* being unable to read from the data segment. We treat either case as
* an error.
*/
int
umem_set_standalone(void)
{
int ready;
umem_is_standalone = 0;
umem_is_standalone = 1;
else
return (-1);
/*
* now that we know where things should be, make sure we can actually
* read things out.
*/
return (-1);
return (0);
}
{
}
/* This is like mdb_readvar, only for libumem.so's symbols */
{
return (-1);
return (-1);
}
int
{
}