NetBSD/lib/libc/gen/psignal.c

88 lines
2.9 KiB
C
Raw Normal View History

/* $NetBSD: psignal.c,v 1.19 2000/01/22 22:19:11 mycroft Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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.
*/
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)psignal.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: psignal.c,v 1.19 2000/01/22 22:19:11 mycroft Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
1998-07-28 16:21:07 +04:00
#include <sys/types.h>
#include <sys/uio.h>
#include <limits.h>
#include <signal.h>
1993-03-21 12:45:37 +03:00
#include <string.h>
#include <unistd.h>
1998-07-28 16:21:07 +04:00
#include "extern.h"
#ifdef __weak_alias
__weak_alias(psignal,_psignal)
#endif
1993-03-21 12:45:37 +03:00
void
psignal(sig, s)
unsigned int sig;
const char *s;
{
1998-07-28 16:21:07 +04:00
struct iovec *v;
struct iovec iov[4];
static char buf[NL_TEXTMAX];
1993-03-21 12:45:37 +03:00
1998-07-28 16:21:07 +04:00
v = iov;
if (s && *s) {
1998-11-13 15:31:50 +03:00
/* LINTED iov_base is not written to */
1998-07-28 16:21:07 +04:00
v->iov_base = (void *)s;
v->iov_len = strlen(s);
v++;
v->iov_base = ": ";
v->iov_len = 2;
v++;
1993-03-21 12:45:37 +03:00
}
1998-11-13 15:31:50 +03:00
/* LINTED iov_base is not written to */
1998-11-13 18:46:52 +03:00
v->iov_base = (void *)__strsignal((int)sig, buf, sizeof(buf));
v->iov_len = strlen(v->iov_base);
1998-07-28 16:21:07 +04:00
v++;
v->iov_base = "\n";
v->iov_len = 1;
(void)writev(STDERR_FILENO, iov, (v - iov) + 1);
1993-03-21 12:45:37 +03:00
}