getdtablesize - get file descriptor table size
Bibliothèque C standard (
libc,
-lc)
#include <unistd.h>
int getdtablesize(void);
getdtablesize() :
Depuis la glibc 2.20 :
_DEFAULT_SOURCE || ! (_POSIX_C_SOURCE >= 200112L)
De la glibc 2.12 à la glibc 2.19 :
_BSD_SOURCE || ! (_POSIX_C_SOURCE >= 200112L)
Avant la glibc 2.12 :
_BSD_SOURCE || _XOPEN_SOURCE >= 500
getdtablesize() retourne le nombre maximal de fichiers qu'un processus
puisse ouvrir simultanément, soit un de plus que la plus grande valeur
possible pour un descripteur de fichier.
La limite actuelle du nombre de fichiers ouverts par processus.
Sous Linux,
getdtablesize() peut renvoyer toutes les erreurs
décrites pour
getrlimit(2) ; consultez les NOTES
ci‐dessous.
Pour une explication des termes utilisés dans cette section, consulter
attributes(7).
Interface |
Attribut |
Valeur |
getdtablesize() |
Sécurité des threads |
MT-Safe |
SVr4, 4.4BSD (the
getdtablesize() function first appeared in 4.2BSD). It
is not specified in POSIX.1; portable applications should employ
sysconf(_SC_OPEN_MAX) instead of this call.
The glibc version of
getdtablesize() calls
getrlimit(2) and
returns the current
RLIMIT_NOFILE limit, or
OPEN_MAX when that
fails.
close(2),
dup(2),
getrlimit(2),
open(2)
La traduction française de cette page de manuel a été
créée par Christophe Blaess
<
https://www.blaess.fr/christophe/>, Stéphan Rafin
<
[email protected]>, Thierry Vignaud
<
[email protected]>, François Micaux, Alain Portal
<
[email protected]>, Jean-Philippe Guérard
<
[email protected]>, Jean-Luc Coulon (f5ibh)
<
[email protected]>, Julien Cristau
<
[email protected]>, Thomas Huriaux <
[email protected]>,
Nicolas François <
[email protected]>, Florentin
Duneau <
[email protected]>, Simon Paillard
<
[email protected]>, Denis Barbier
<
[email protected]> et David Prévot <
[email protected]>
Cette traduction est une documentation libre ; veuillez vous reporter
à la
GNU
General Public License version 3 concernant les conditions de copie
et de distribution. Il n'y a aucune RESPONSABILITÉ LÉGALE.
Si vous découvrez un bogue dans la traduction de cette page de manuel,
veuillez envoyer un message à
[email protected]