Move SIG_HOLD from <sys/signalvar.h> to <sys/signal.h>, since POSIX-2001
wants that name to be exposed.
This commit is contained in:
parent
2d7b577657
commit
912ab720a8
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: signal.h,v 1.48 2002/11/26 19:07:14 christos Exp $ */
|
||||
/* $NetBSD: signal.h,v 1.49 2003/01/15 22:48:21 kleink Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1982, 1986, 1989, 1991, 1993
|
||||
|
@ -117,6 +117,7 @@
|
|||
#define SIG_DFL ((void (*) __P((int))) 0)
|
||||
#define SIG_IGN ((void (*) __P((int))) 1)
|
||||
#define SIG_ERR ((void (*) __P((int))) -1)
|
||||
#define SIG_HOLD ((void (*) __P((int))) 3)
|
||||
|
||||
#ifndef _ANSI_SOURCE
|
||||
#if defined(__LIBC12_SOURCE__) || defined(_KERNEL)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: signalvar.h,v 1.35 2002/12/01 21:32:05 matt Exp $ */
|
||||
/* $NetBSD: signalvar.h,v 1.36 2003/01/15 22:48:21 kleink Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991, 1993
|
||||
|
@ -82,7 +82,6 @@ struct sigctx {
|
|||
|
||||
/* additional signal action values, used only temporarily/internally */
|
||||
#define SIG_CATCH (void (*) __P((int)))2
|
||||
#define SIG_HOLD (void (*) __P((int)))3
|
||||
|
||||
/*
|
||||
* get signal action for process and signal; currently only for current process
|
||||
|
|
Loading…
Reference in New Issue