1. 程式人生 > >獲取系統限制資訊

獲取系統限制資訊

// 成功返回相應值,出錯返回-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引數: