Giter Club home page Giter Club logo

Comments (3)

decisive-strike avatar decisive-strike commented on May 4, 2024

另外,在day3中有个判断条件是(errno == EAGAIN) || (errno == EWOULDBLOCK),我查阅资料后发现,EAGAIN与EWOULDBLOCK是完全相同的宏,不明白为什么这里要用或关系

from 30daymakecppserver.

yuesong-feng avatar yuesong-feng commented on May 4, 2024
  1. 很入门的C/C++问题,建议先打好语言基础。
  2. 在标准中,EAGAIN被定义为资源短暂不可用,而EWOULDBLOCK被定义为操作阻塞,从定义上这两者不是一个概念。
    在某些较老的unix系统中,这两者可能有不一样的实现。但对于GNU的libc库,这两者相同,从源码可以看到:
/* non-blocking and interrupt i/o */
#define EAGAIN          35              /* Resource temporarily unavailable */
#define EWOULDBLOCK     EAGAIN          /* Operation would block */

这两者定义为相同可能是为了g++编译器、os的实现方便,在编程时,需要认识清楚,可以参考《UNIX网络编程》非阻塞式编程相关章节。
这样用或操作,有两个好处:

  1. 程序逻辑更加健壮,让程序处理了资源短暂不可用、操作阻塞两种情况。
  2. 兼容了其他所有没有将EWOULDBLOCK和EAGAIN定义为相同的系统。

from 30daymakecppserver.

Ljj18392668155 avatar Ljj18392668155 commented on May 4, 2024
  1. 很入门的C/C++问题,建议先打好语言基础。

  2. 在标准中,EAGAIN被定义为资源短暂不可用,而EWOULDBLOCK被定义为操作阻塞,从定义上这两者不是一个概念。

在某些较老的unix系统中,这两者可能有不一样的实现。但对于GNU的libc库,这两者相同,从源码可以看到:

/* non-blocking and interrupt i/o */

#define EAGAIN          35              /* Resource temporarily unavailable */

#define EWOULDBLOCK     EAGAIN          /* Operation would block */

这两者定义为相同可能是为了g++编译器、os的实现方便,在编程时,需要认识清楚,可以参考《UNIX网络编程》非阻塞式编程相关章节。

这样用或操作,有两个好处:

  1. 程序逻辑更加健壮,让程序处理了资源短暂不可用、操作阻塞两种情况。

  2. 兼容了其他所有没有将EWOULDBLOCK和EAGAIN定义为相同的系统。

大佬之后还会更新吗,最近在学习网络编程,觉得您写的教程特别易懂!

from 30daymakecppserver.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.