Linux中是否有阻止系统调用的列表?

Linux中是否有阻止系统调用的列表?,linux,call,system,Linux,Call,System,Linux中所有的阻塞系统调用是什么?我正在寻找一组系统调用,其中调用进程可以/将被挂起并放入等待队列,直到系统调用完成 例如,轮询(2)是一个阻塞系统调用,如其手动输入所示: If none of the events requested (and no error) has occurred for any of the file descriptors, then poll() blocks until one of the events occurs. 如果未发生任何请求的事

Linux中所有的阻塞系统调用是什么?我正在寻找一组系统调用,其中调用进程可以/将被挂起并放入等待队列,直到系统调用完成

例如,轮询(2)是一个阻塞系统调用,如其手动输入所示:

If none of the events requested (and no error) has occurred for any of the file descriptors, then poll() blocks until one of the events occurs. 如果未发生任何请求的事件(且无错误) 对于任何一个文件描述符,则poll()将阻塞,直到 其中一个事件发生了。 但是,大多数系统调用的手动条目并没有明确说明系统调用是否可以或将阻止。例如,mprotect(2)是阻塞系统调用吗