Upgraded GRUB2 to 2.00 release.
[AROS.git] / compiler / clib / sigpending.c
blobb19b482b2229eaa5f210a3b577c90701d74ccfd8
1 /*
2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function sigpending().
6 */
8 #include <aros/debug.h>
9 #include <errno.h>
11 /*****************************************************************************
13 NAME */
15 #include <signal.h>
17 int sigpending (
19 /* SYNOPSIS */
20 sigset_t *set)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
29 Not implemented.
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 ******************************************************************************/
41 /* TODO: Implement sigpending() */
42 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
43 errno = ENOSYS;
45 return -1;
46 } /* sigpending */