162 lines
3.9 KiB
Groff
162 lines
3.9 KiB
Groff
.\" Copyright (c) 1993
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
.\"
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
.\" modification, are permitted provided that the following conditions
|
|
.\" are met:
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
.\" 3. All advertising materials mentioning features or use of this software
|
|
.\" must display the following acknowledgement:
|
|
.\" This product includes software developed by the University of
|
|
.\" California, Berkeley and its contributors.
|
|
.\" 4. Neither the name of the University nor the names of its contributors
|
|
.\" may be used to endorse or promote products derived from this software
|
|
.\" without specific prior written permission.
|
|
.\"
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
.\" SUCH DAMAGE.
|
|
.\"
|
|
.\" @(#)err.3 8.1.1 (2.11BSD GTE) 2/3/95
|
|
.\"
|
|
.TH ERR 3 "February 3, 1995"
|
|
.UC 4
|
|
.SH NAME
|
|
err,
|
|
verr ,
|
|
errx ,
|
|
verrx ,
|
|
warn ,
|
|
vwarn ,
|
|
warnx ,
|
|
vwarnx \- formatted error messages
|
|
.SH SYNOPSIS
|
|
.nf
|
|
.ft B
|
|
void
|
|
err(eval, fmt, ...)
|
|
int eval;
|
|
char *fmt;
|
|
.PP
|
|
void
|
|
verr(eval, fmt, args)
|
|
int eval;
|
|
char *fmt;
|
|
va_list args;
|
|
.PP
|
|
void
|
|
errx(eval, fmt, ...)
|
|
int eval;
|
|
char *fmt;
|
|
.PP
|
|
void
|
|
verrx(eval, fmt, args)
|
|
int eval
|
|
char *fmt;
|
|
va_list args;
|
|
.PP
|
|
void
|
|
warn(fmt, ...)
|
|
char *fmt;
|
|
.PP
|
|
void
|
|
vwarn(fmt, args)
|
|
char *fmt;
|
|
va_list args;
|
|
.PP
|
|
void
|
|
warnx(fmt, ...)
|
|
char *fmt;
|
|
.PP
|
|
void
|
|
vwarnx(fmt, args)
|
|
char *fmt;
|
|
va_list args;
|
|
.ft R
|
|
.fi
|
|
.SH DESCRIPTION
|
|
The
|
|
.B err
|
|
and
|
|
.B warn
|
|
family of functions display a formatted error message on the standard
|
|
error output.
|
|
In all cases, the last component of the program name, a colon character,
|
|
and a space are output.
|
|
If the
|
|
.I fmt
|
|
argument is not NULL, the formatted error message, a colon character,
|
|
and a space are output.
|
|
In the case of the
|
|
.BR err ,
|
|
.BR verr ,
|
|
.BR warn ,
|
|
and
|
|
.BR vwarn
|
|
functions, the error message string affiliated with the current value of
|
|
the global variable
|
|
.I errno
|
|
is output.
|
|
In all cases, the output is followed by a newline character.
|
|
.PP
|
|
The
|
|
.BR err ,
|
|
.BR verr ,
|
|
.BR errx ,
|
|
and
|
|
.BR verrx
|
|
functions do not return, but exit with the value of the argument
|
|
.IR eval .
|
|
.SH EXAMPLES
|
|
Display the current errno information string and exit:
|
|
.sp
|
|
.in +1.0i
|
|
.nf
|
|
if ((p = malloc(size)) == NULL)
|
|
err(1, NULL);
|
|
if ((fd = open(file_name, O_RDONLY, 0)) == -1)
|
|
err(1, "%s", file_name);
|
|
.in -1.0i
|
|
.fi
|
|
.PP
|
|
Display an error message and exit:
|
|
.sp
|
|
.in +1.0i
|
|
.nf
|
|
if (tm.tm_hour < START_TIME)
|
|
errx(1, "too early, wait until %s", start_time_string);
|
|
.in -1.0i
|
|
.fi
|
|
.PP
|
|
Warn of an error:
|
|
.sp
|
|
.in +1.0i
|
|
.nf
|
|
if ((fd = open(raw_device, O_RDONLY, 0)) == -1)
|
|
warnx("%s: %s: trying the block device",
|
|
raw_device, strerror(errno));
|
|
if ((fd = open(block_device, O_RDONLY, 0)) == -1)
|
|
err(1, "%s", block_device);
|
|
.in -1.0i
|
|
.fi
|
|
.SH SEE ALSO
|
|
strerror(3)
|
|
.SH HISTORY
|
|
The
|
|
.B err
|
|
and
|
|
.B warn
|
|
functions first appeared in 4.4BSD.
|