⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ppoll.h

📁 这是Linux环境下的蓝牙源代码
💻 H
字号:
#ifdef ppoll#undef ppoll#endif#define ppoll compat_ppollstatic inline int compat_ppoll(struct pollfd *fds, nfds_t nfds,		const struct timespec *timeout, const sigset_t *sigmask){	if (timeout == NULL)		return poll(fds, nfds, -1);	else if (timeout->tv_sec == 0)		return poll(fds, nfds, 500);	else		return poll(fds, nfds, timeout->tv_sec * 1000);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -