Deleted Added
full compact
thr_poll.c (55194) thr_poll.c (55838)
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 55194 1999-12-28 18:13:04Z deischen $
32 * $FreeBSD: head/lib/libkse/thread/thr_poll.c 55838 2000-01-12 09:28:58Z jasone $
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
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)
47_libc_poll(struct pollfd *fds, unsigned int nfds, int timeout)
48{
49 struct timespec ts;
50 int numfds = nfds;
51 int i, ret = 0;
52 struct pthread_poll_data data;
53
54 if (numfds > _thread_dtablesize) {
55 numfds = _thread_dtablesize;

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

91 ret = -1;
92 } else {
93 ret = data.nfds;
94 }
95 }
96
97 return (ret);
98}
48{
49 struct timespec ts;
50 int numfds = nfds;
51 int i, ret = 0;
52 struct pthread_poll_data data;
53
54 if (numfds > _thread_dtablesize) {
55 numfds = _thread_dtablesize;

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

91 ret = -1;
92 } else {
93 ret = data.nfds;
94 }
95 }
96
97 return (ret);
98}
99
100__weak_reference(_libc_poll, poll);
99#endif
101#endif