Jump to content United States-English
HP.com Home Products and Services Support and Drivers Solutions How to Buy
» Contact HP
More options
HP.com home
HP-UX Reference > F

fmtmsg(3C)

HP-UX 11i Version 3: February 2007
» 

Technical documentation

» Feedback
Content starts here

 » Table of Contents

 » Index

NAME

fmtmsg() — displays formatted message on standard error and console

SYNOPSIS

#include <fmtmsg.h> int fmtmsg( long class, const char *label, int severity, const char *text, const char *action, const char *tag );

DESCRIPTION

The fmtmsg() routine is intended as a language-independent error message service. Messages are displayed on the system console, standard error, or both, depending on the setting of the class parameter. The format of messages is under the control of the user, who may specify how much of the message is to be displayed on standard error. However, the format of the message displayed to the system console is not under user control.

All messages specify a class, which indicates the source and status of the error condition, and where the message should be directed. The class may be functionally excluded by specifying MM_NULLMC. If this is done, no message is produced. The class types are:

Display

The display class has allowable values of MM_PRINT, which directs the message to standard error, MM_CONSOLE, which directs the message to the system console, or MM_PRINT | MM_CONSOLE, which directs the message to both.

Error Type

The error type class may be one of MM_HARD, indicating a hardware error, MM_SOFT, indicating a software failure, or MM_FIRM, which indicates a firmware error.

Error Source

The error source class may be one of MM_APPL, indicating an application, MM_UTIL, indicating an OS utility, or MM_OPSYS, indicating a system error.

Recovery Status

The recovery status class may be one of MM_RECOVER, indicating recovery from the error is possible, or RMM_NRECOV, stating no recovery is possible.

The remaining parameters are functionally optional, in that the message produced may exclude any or all of them. Each is discussed in parameter order.

The label component states where the error originated. It has the form major:minor, where major is a 10 character field specifying the major system producing the message and minor is a 14 character field specifying the subsystem in error. For example,

mail:send

This component can be excluded by setting it to MM_NULLLBL or NULL.

The severity component describes the degree of importance of the failure. The predefined severity levels are:

MM_NOSEV

No severity is specified and no print string is generated.

MM_INFO

The message is informational only and the INFO string is generated.

MM_WARNING

The situation might be in error, and should be checked. The WARNING string is generated.

MM_ERROR

An error has been detected. The ERROR string is generated.

MM_HALT

An unrecoverable error has been detected. The HALT string is generated.

The text component describes the nature of the failure in the most specific terms. It is expected to provide a sufficiently detailed account of the error to remove all doubt about its cause. It may be excluded by setting text to MM_NULLTXT or MM_NULL.

The action component describes the options available for recovery from the error. As output, it is prefaced with the string TO FIX:. It may be disabled by setting action to MM_NULLACT or NULL.

The tag component is intended to direct the user to the appropriate documentation to correct or avoid the error. It may be disabled by setting tag to MM_NULLTXT or RMM_NULL.

EXTERNAL INFLUENCES

The user may control the appearance of the message produced on standard error through the use of two environment variables: MSGVERB and SEV_LEVEL. These have no effect on the console message.

The MSGVERB environment variable describes the components the user is interested in seeing. The value of MSGVERB is a list of one or more components, separated by colons if more than one is specified. All components with non-NULL values listed in MSGVERB are displayed when fmtmsg() is called; all other components are excluded. Only the component names label, severity, text, action, and tag are valid list elements. Any others (or an empty list) are considered an error in MSGVERB format. If MSGVERB is erroneous or unset, fmtmsg() produces the full message.

The SEV_LEVEL environment variable gives users control over the text string displayed for the severity component if the severity is other than those described above. The predefined severity levels (MM_NOSEV through MM_HALT) cannot be overridden.

The value of SEV_LEVEL is a list of one or more level specifiers separated by colons. A level specifier is a three item comma list of the form identifier, level, message. The identifier is not used by fmtmsg(), and is only included for compatibility. It is not optional, however, as fmtmsg() expects it when examining level specifiers for the other two parts. The level is a number greater than four indicating the level defined. The message is a string to be displayed in the severity field, in the same manner as HALT and INFO are displayed for the MM_HALT and MM_INFO severities. Level specifiers having more or fewer than three items are invalid, as are null level specifiers. Invalid or null valued SEV_LEVEL lists have no impact on the behavior of fmtmsg().

RETURN VALUE

The fmtmsg() routine returns one of the following values on exit:

MM_OK

Success.

MM_NOTOK

Failure.

MM_NOMSG

Failure to standard error, success to the system console.

MM_NOCON

Success to standard error, failure to the system console.

AUTHOR

fmtmsg() was developed by OSF and HP.

STANDARDS COMPLIANCE

fmtmsg: SVID3

Printable version
Privacy statement Using this site means you accept its terms Feedback to webmaster
© 1983-2007 Hewlett-Packard Development Company, L.P.