getdtablesize - get file descriptor table size
Biblioteca Estándar C (
libc,
-lc)
#include <unistd.h>
int getdtablesize(void);
getdtablesize():
Since glibc 2.20:
_DEFAULT_SOURCE || ! (_POSIX_C_SOURCE >= 200112L)
glibc 2.12 to glibc 2.19:
_BSD_SOURCE || ! (_POSIX_C_SOURCE >= 200112L)
Before glibc 2.12:
_BSD_SOURCE || _XOPEN_SOURCE >= 500
getdtablesize() devuelve el número máximo de ficheros que
un proceso puede tener abiertos, uno más que el valor más grande
posible para un descriptor de fichero.
El límite actual de número de ficheros abiertos por proceso.
On Linux,
getdtablesize() can return any of the errors described for
getrlimit(2); see NOTES below.
Para obtener una explicación de los términos usados en esta
sección, véase
attributes(7).
Interfaz |
Atributo |
Valor |
getdtablesize() |
Seguridad del hilo |
Multi-hilo seguro |
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 traducción al español de esta página del manual fue
creada por Miguel Angel Sepulveda <
[email protected]>, Gerardo
Aburruzaga García <
[email protected]> y Miguel
Pérez Ibars <
[email protected]>
Esta traducción es documentación libre; lea la
GNU
General Public License Version 3 o posterior con respecto a las
condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página
del manual, envíe un correo electrónico a
[email protected]