Skip to content
Snippets Groups Projects
Commit fb0571b5 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Poll code needs a bit more work.

parent 7a13824c
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -883,7 +883,7 @@ dnl check to see if system call automatically restart
dnl AC_SYS_RESTARTABLE_SYSCALLS
dnl ----------------------------------------------------------------
AC_CHECK_FUNCS( poll )
dnl AC_CHECK_FUNCS( poll )
AC_CHECK_HEADERS( poll.h )
dnl ----------------------------------------------------------------
......
......@@ -212,9 +212,6 @@
/* Define if you have the pipe function. */
#undef HAVE_PIPE
/* Define if you have the poll function. */
#undef HAVE_POLL
/* Define if you have the pthread_getconcurrency function. */
#undef HAVE_PTHREAD_GETCONCURRENCY
......
......@@ -43,7 +43,7 @@
#endif
#undef TV2MILLISEC
#define TV2MILLISEC(tv) (((tv)->sec * 1000) + ((tv)->tv_usec/1000))
#define TV2MILLISEC(tv) (((tv)->tv_sec * 1000) + ((tv)->tv_usec/1000))
/*
* Support needed if the library is running in the kernel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment