1. 程式人生 > >獲取系統限制信息

獲取系統限制信息

限制 sysconf const clu har style 技術分享 com unistd.h

// 成功返回相應值,出錯返回-1
#include <unistd.h>
long sysconf(int name);
// 用獲取與指定文件相關的限制值,區別在於前者使用路徑名,後者使用文件描述符
long pathconf(const char *pathname, int name);
long fpathconf(int fd, int name);

sysconf的限制及name參數:

技術分享圖片

pathconf和fpathconf的限制及name參數:

技術分享圖片

獲取系統限制信息