How can adding a header increase portability? (sys/time.h)

北战南征 提交于 2019-12-20 03:14:49

问题


I just noticed this line in the getrusage man page:

Including <sys/time.h> is not required these days, but increases portability. (Indeed, struct timeval is defined in <sys/time.h>)

What? Since struct rusage contains struct timeval as a member, surely sys/resource.h must include sys/time.h or the type would be incomplete and unusable?

How could this comment ever have made sense? How could it ever have not been necessary? How could portability have ever been helped?


回答1:


In general, it was not uncommon in the early days of C for you to have to manually include header file A before header file B. Maybe an early version of the preprocessor couldn't do nested includes, or maybe it was just stylistic (manpages would often directly include the header files for relevant structures).

"These days", sys/resource.h must either include sys/time.h or repeat the definition of struct timeval, but not every system follows the standard completely.




回答2:


It's because the BSD's require it:

FreeBSD and OpenBSD need sys/time.h, not just time.h, before sys/resource.h.

See this page on UNIX Portability for details.



来源:https://stackoverflow.com/questions/7889678/how-can-adding-a-header-increase-portability-sys-time-h

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