sched/signal and syscall/: Add support for pselect() and ppoll() functions

This commit is contained in:
dongjianli
2018-11-08 07:45:23 -06:00
committed by Gregory Nutt
parent 27c7974cb1
commit 057d555129
10 changed files with 336 additions and 3 deletions
+5
View File
@@ -44,6 +44,7 @@
#include <nuttx/compiler.h>
#include <stdint.h>
#include <signal.h>
#include <semaphore.h>
/****************************************************************************
@@ -153,6 +154,10 @@ extern "C"
int poll(FAR struct pollfd *fds, nfds_t nfds, int timeout);
int ppoll(FAR struct pollfd *fds, nfds_t nfds,
FAR const struct timespec *timeout_ts,
FAR const sigset_t *sigmask);
#undef EXTERN
#if defined(__cplusplus)
}