ppoll.h
来自「基于LINUX内核驱动的开发」· C头文件 代码 · 共 12 行
H
12 行
#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){ return poll(fds, nfds, timeout ? timeout->tv_sec * 1000 : 500);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?