What are the possible error conditions on a stream that will cause ferror() to be set?

北城余情 提交于 2019-12-11 00:49:48

问题


Some operations to read and write from streams may set the error flag in a stream, which can be tested using ferror(stream), while I'm quite sure this must be a frequently asked question, I wasn't able to find a list of all the possible causes of errors in SO or in the general web. What could cause ferror() to be set?

In particular, I'm looking for the possible causes of errors when doing fgets() on the standard input on Minix 3, but I'm looking for a more general list as well.


回答1:


There isn't any simple list of possible errors. However, depending on the device you're reading from or writing to, the problems could include:

  • Device fails (short circuits, overheats, dies of old age, ...)
  • Device is pulled out of machine (USB stick)
  • Device is switched off or loses power (external disk drive)
  • Device is ejected (CD-ROM)
  • Network connection is lost (SAN, NAS)
  • Device is full (no space left for writing)
  • ...


来源:https://stackoverflow.com/questions/10125127/what-are-the-possible-error-conditions-on-a-stream-that-will-cause-ferror-to-b

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!