b640ca789b
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7977 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
304 B
C
17 lines
304 B
C
/*
|
|
** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
*/
|
|
|
|
|
|
#include <poll.h>
|
|
#include <syscalls.h>
|
|
|
|
|
|
int
|
|
poll(struct pollfd *fds, nfds_t numfds, int timeout)
|
|
{
|
|
return _kern_poll(fds, numfds, timeout * 1000LL);
|
|
}
|
|
|