Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论是在一般情况下还是在跨平台支持方面,一个函数——getpagesize() 与 sysconf(_SC_PAGESIZE)——是否比另一个更可靠?
经过一些额外的搜索,我发现 getpagesize() 在 POSIX 问题 6 中已被弃用。因此,应该使用 sysconf(_SC_PAGESIZE) 代替。