summaryrefslogtreecommitdiff
path: root/include/signal.h
AgeCommit message (Collapse)Author
2012-12-05Remove excessive sys/cdefs.h inclusionTheo de Raadt
ok guenther millert kettenis
2012-06-10Improve standards compliance: bsd_signal() was XSI only and has been droppedPhilip Guenthe
from the most recent version, use the implementation namespace for variables in inline functions, and add __restrict as specified. ok millert@
2012-05-13functions are top-level objects anyways, make that clearer.Marc Espie
Okay otto@
2012-01-03The prototype for pthread_sigmask(2) is supposed to live in <signal.h>Mark Kettenis
instead of <pthread.h>. ok guenther@, millert@
2011-11-22sigstack() is long dead, and the compat sigaltstack syscall is gone too.Philip Guenthe
Correct the namespace protections for sigreturn(), sigwait(), and psignal() ok millert@
2011-07-06sigset_t is unsigned, so eliminate a warning by shifting a 1U insteadPhilip Guenthe
of a 1 when creating signal masks. ok millert@
2010-10-01Now that __only_inline is in <sys/cdefs.h>, replace the local versions inPhilip Guenthe
<ctype.h> and <signal.h> ok kettenis@ millert@ deraadt@
2010-07-26Always force GNU inline semantics here as well.Mark Kettenis
2008-04-29Make sure sys_signame and sys_siglist are wrapped in __BEGIN_DECLS.Mark Kettenis
Needed to tell pedantic C++ compilers these symbols have 'C' linkage. ok kurt@
2007-03-17allow extern inline stuff to proceed unchanged thru the mess that theMarc Espie
combined GCC and ISO committees managed to make out of it. With this, gcc >= 4.3 can grok its way through it correctly. okay kettenis@, with some help figuring stuff out.
2005-12-21Do not declare errno as extern int, set it via __errno().Todd C. Miller
2005-12-13First step in include files overhaul. Use __FOO_VISIBLE (as definedTodd C. Miller
in sys/cdefs.h) instead of _FOO_SOURCE. Also fix several namespace pollution issues, including the byte order defines. OK deraadt@
2004-05-03XPG specifies bsd_signal(3) so make it an alias for signal(3); OK deraadt@Todd C. Miller
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2002-02-19We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft.Todd C. Miller
2002-02-16Part one of userland __P removal. Done with a simple regexp with some minor ↵Todd C. Miller
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
1998-11-20Add thread-safety to libc, so that libc_r will build (on i386 at least).David Leonard
All POSIX libc api now there (to P1003.1c/D10) (more md stuff is needed for other libc/arch/*) (setlogin is no longer a special syscall) Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS). Doc some re-entrant routines Add libc_r to intro(3) dig() uses some libc srcs and an extra -I was needed there. Add more md stuff to libc_r. Update includes for the pthreads api Update libc_r TODO
1996-09-20pull cdefs.h in sys/signal.h instead; improvement on netbsd pr#2712; ↵Theo de Raadt
laine@mornignstar.com
1996-03-18From NetBSD: Add prototype for sigaltstack; from John Kohl in PR #2129Niklas Hallqvist
1995-10-18initial import of NetBSD treeTheo de Raadt