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