File: ppoll.h

package info (click to toggle)
bluez-utils 3.7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,356 kB
  • ctags: 4,045
  • sloc: ansic: 37,066; sh: 8,976; python: 408; yacc: 366; lex: 263; makefile: 244
file content (5 lines) | stat: -rw-r--r-- 185 bytes parent folder | download
1
2
3
4
5
static inline int ppoll(struct pollfd *fds, nfds_t nfds,
		const struct timespec *timeout, const sigset_t *sigmask)
{
	return poll(fds, nfds, timeout ? timeout->tv_sec * 1000 : 500);
}