logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

getdtablesize — get file descriptor limit

Description

The getdtablesize() system call returns the maximum number of file descriptors that the current process may open. The maximum file descriptor number that the system may assign is the return value minus one. Existing file descriptor numbers may be higher if the limit was lowered after they were opened.

History

The getdtablesize() system call appeared in 4.2BSD. Debian April 24, 2013 GETDTABLESIZE(2)

Library

Standard C Library (libc, -lc)

Name

getdtablesize — get file descriptor limit

See Also

close(2), closefrom(2), dup(2), getrlimit(2), sysconf(3)

Synopsis

#include<unistd.h>intgetdtablesize(void);

See Also