From 83becbe369bcf3478063662fc2626ccbf4530b20 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 8 Feb 2011 17:28:27 +0100 Subject: s3: Add sys_poll_intr --- lib/util/select.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/util/select.h') diff --git a/lib/util/select.h b/lib/util/select.h index 795c8fa454..3c762de2ad 100644 --- a/lib/util/select.h +++ b/lib/util/select.h @@ -28,5 +28,6 @@ void sys_select_signal(char c); int sys_select(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval); int sys_select_intr(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval); int sys_poll(struct pollfd *fds, int num_fds, int timeout); +int sys_poll_intr(struct pollfd *fds, int num_fds, int timeout); #endif -- cgit