From fce469e791cde17e5855ae8cc13a44d14639c6cb Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Wed, 4 Apr 2001 05:16:48 +0000 Subject: Add missing function sigfillset. --- libc/signal/sigfillset.c | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 libc/signal/sigfillset.c (limited to 'libc/signal/sigfillset.c') diff --git a/libc/signal/sigfillset.c b/libc/signal/sigfillset.c new file mode 100644 index 000000000..1d67f1dc5 --- /dev/null +++ b/libc/signal/sigfillset.c @@ -0,0 +1,37 @@ +/* Copyright (C) 1991, 1996, 1997 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the GNU C Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +#include +#include +#include + +/* Set all signals in SET. */ +int +sigfillset (set) + sigset_t *set; +{ + if (set == NULL) + { + errno = EINVAL; + return -1; + } + + memset (set, 0xff, sizeof (sigset_t)); + + return 0; +} -- cgit v1.2.3