EAGAIN 是什么意思?

发布于 2024-09-30 01:54:32 字数 26 浏览 5 评论 0原文

如标题所示,EAGAIN 是什么意思?

As in the title what does EAGAIN mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

白昼 2024-10-07 01:54:32

EAGAIN 在执行 非阻塞 I/O。这意味着“目前没有可用数据,请稍后重试”。。

可能(或可能不会)与 EWOULDBLOCK 相同,这意味着“你的线程必须阻塞才能执行此操作”。

EAGAIN is often raised when performing non-blocking I/O. It means "there is no data available right now, try again later".

It might (or might not) be the same as EWOULDBLOCK, which means "your thread would have to block in order to do that".

怼怹恏 2024-10-07 01:54:32

使用 man 2 简介 | less -Ip EAGAIN:

     35 EAGAIN Resource temporarily unavailable.  This is a temporary condi-
         tion and later calls to the same routine may complete normally.

Using man 2 intro | less -Ip EAGAIN:

     35 EAGAIN Resource temporarily unavailable.  This is a temporary condi-
         tion and later calls to the same routine may complete normally.
走走停停 2024-10-07 01:54:32

这意味着什么并不那么重要。这意味着:

  • 您的系统调用失败,
  • 没有发生任何事情(系统调用是原子的,而这一次没有发生)
  • 可以再试一次(它可能再次失败,可能不同的结果)
  • 或者您可以选择其他方式。

EAGAIN 的全部内容是您的进程不会在系统调用内被阻塞;它有权选择:要么重试,要么做一些有用的事情。

What it means is less important. What it implies:

  • your system call failed
  • nothing happened (system calls are atomic, and this one just did not happen)
  • you could try it again (it could fail again, possibly with a different result)
  • or you could choose otherwise.

The whole thing about EAGAIN is that your process is not blocked inside the system call; it has the right to choose: either retry or do something useful.

壹場煙雨 2024-10-07 01:54:32

摘录 errno(3) - Linux 手册页

EAGAIN 资源暂时不可用(可能与 EWOULDBLOCK 的值相同)(POSIX.1-2001)。

使用案例:当epoll处于ET模式时,仅在读或写返回EAGAIN后等待

Excerpt errno(3) - Linux manual page:

EAGAIN Resource temporarily unavailable (may be the same value as EWOULDBLOCK) (POSIX.1-2001).

Use case: When epoll in ET mode, only wait after read or write return EAGAIN

灯角 2024-10-07 01:54:32

根据 ,它的意思是“操作会导致进程暂停。”

According to this, it means "Operation would have caused the process to be suspended."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文