support.c revision 7c478bd95313f5f23a4c958a745db2134aa03244
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (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
* or http://www.opensolaris.org/os/licensing.
* 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 (c) 1998-2001 by Sun Microsystems, Inc.
* All rights reserved.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "msg.h"
#include "_debug.h"
void
Dbg_support_req(const char *define, int flag)
{
const char *str;
if (DBG_NOTCLASS(DBG_SUPPORT))
return;
if (flag == DBG_SUP_ENVIRON)
str = MSG_INTL(MSG_SUP_REQ_ENV);
else if (flag == DBG_SUP_CMDLINE)
str = MSG_INTL(MSG_SUP_REQ_CMD);
else
str = MSG_INTL(MSG_SUP_REQ_DEF);
dbg_print(MSG_ORIG(MSG_STR_EMPTY));
dbg_print(MSG_INTL(MSG_SUP_REQ), define, str);
}
void
Dbg_support_load(const char *obj, const char *func)
{
if (DBG_NOTCLASS(DBG_SUPPORT))
return;
dbg_print(MSG_INTL(MSG_SUP_ROUTINE), obj, func);
}
void
Dbg_support_action(const char *obj, const char *func, Support_ndx ndx,
const char *name)
{
const char *str;
if (DBG_NOTCLASS(DBG_SUPPORT))
return;
if (DBG_NOTDETAIL())
return;
if (ndx == LDS_START)
str = MSG_INTL(MSG_SUP_OUTFILE);
else if (ndx == LDS_FILE)
str = MSG_INTL(MSG_SUP_INFILE);
else if (ndx == LDS_INP_SECTION)
str = MSG_INTL(MSG_SUP_INSEC);
else if (ndx == LDS_SECTION)
str = MSG_INTL(MSG_SUP_SEC);
if ((ndx == LDS_ATEXIT) || (ndx == LDS_VERSION) ||
(ndx == LDS_INPUT_DONE))
dbg_print(MSG_INTL(MSG_SUP_CALLING_1), func, obj);
else
dbg_print(MSG_INTL(MSG_SUP_CALLING_2), func, obj, str, name);
}