Deleted Added
full compact
thr_poll.c (50601) thr_poll.c (55194)
1/*
2 * Copyright (c) 1999 Daniel Eischen <eischen@vigrid.com>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
1/*
2 * Copyright (c) 1999 Daniel Eischen <eischen@vigrid.com>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 15 unchanged lines hidden (view full) ---

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: head/lib/libkse/thread/thr_poll.c 50601 1999-08-30 00:02:08Z deischen $
32 * $FreeBSD: head/lib/libkse/thread/thr_poll.c 55194 1999-12-28 18:13:04Z deischen $
33 */
34#include <unistd.h>
35#include <errno.h>
36#include <string.h>
37#include <poll.h>
38#include <sys/types.h>
39#include <sys/time.h>
40#include <sys/fcntl.h>
41#ifdef _THREAD_SAFE
42#include <pthread.h>
43#include "pthread_private.h"
44
45
46int
47poll(struct pollfd *fds, unsigned int nfds, int timeout)
48{
49 struct timespec ts;
50 int numfds = nfds;
33 */
34#include <unistd.h>
35#include <errno.h>
36#include <string.h>
37#include <poll.h>
38#include <sys/types.h>
39#include <sys/time.h>
40#include <sys/fcntl.h>
41#ifdef _THREAD_SAFE
42#include <pthread.h>
43#include "pthread_private.h"
44
45
46int
47poll(struct pollfd *fds, unsigned int nfds, int timeout)
48{
49 struct timespec ts;
50 int numfds = nfds;
51 int i, ret = 0, found = 0;
51 int i, ret = 0;
52 struct pthread_poll_data data;
53
54 if (numfds > _thread_dtablesize) {
55 numfds = _thread_dtablesize;
56 }
57 /* Check if a timeout was specified: */
58 if (timeout == INFTIM) {
59 /* Wait for ever: */

--- 40 unchanged lines hidden ---
52 struct pthread_poll_data data;
53
54 if (numfds > _thread_dtablesize) {
55 numfds = _thread_dtablesize;
56 }
57 /* Check if a timeout was specified: */
58 if (timeout == INFTIM) {
59 /* Wait for ever: */

--- 40 unchanged lines hidden ---