table of contents
- bullseye-backports 4.18.1-1~bpo11+1
- testing 4.18.1-1
- unstable 4.18.1-1
ALLOCA(3) | Manual del Programador de Linux | ALLOCA(3) |
NOMBRE¶
alloca - asigna memoria que se libera automáticamente
SINOPSIS¶
#include <alloca.h>
void *alloca(size_t size);
DESCRIPCIÓN¶
La función alloca() concede size bytes de espacio en el marco de pila (stack frame) del invocador. Este espacio temporal se libera automáticamente cuando la función que llamó a alloca() regresa a su invocador.
VALOR DEVUELTO¶
La función alloca() devuelve un puntero al comienzo del espacio concedido. Si la reserva provoca un desbordamiento de pila, el comportamiento del programa es indefinido. Esta función no se encuentra en POSIX ni SUSv3.
ATRIBUTOS¶
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
alloca() | Seguridad del hilo | Multi-hilo seguro |
CONFORME A¶
Esta función no está definida en POSIX.1
There is evidence that the alloca() function appeared in 32V, PWB, PWB.2, 3BSD, and 4BSD. There is a man page for it in 4.3BSD. Linux uses the GNU version.
NOTAS¶
The alloca() function is machine- and compiler-dependent. For certain applications, its use can improve efficiency compared to the use of malloc(3) plus free(3). In certain cases, it can also simplify memory deallocation in applications that use longjmp(3) or siglongjmp(3). Otherwise, its use is discouraged.
Because the space allocated by alloca() is allocated within the stack frame, that space is automatically freed if the function return is jumped over by a call to longjmp(3) or siglongjmp(3).
The space allocated by alloca() is not automatically deallocated if the pointer that refers to it simply goes out of scope.
Do not attempt to free(3) space allocated by alloca()!
Notas de la versión GNU¶
Normally, gcc(1) translates calls to alloca() with inlined code. This is not done when either the -ansi, -std=c89, -std=c99, or the -std=c11 option is given and the header <alloca.h> is not included. Otherwise, (without an -ansi or -std=c* option) the glibc version of <stdlib.h> includes <alloca.h> and that contains the lines:
#ifdef __GNUC__ #define alloca(size) __builtin_alloca (size) #endif
lo que puede provocar confusión si se dispone de una versión privada de esta función.
El hecho de que el código sea inline, implica que es imposible tomar la dirección de esta función, o cambiar su comportamiento enlazándola con una biblioteca diferente.
El código inline consiste a menudo en una sola instrucción ajustando el puntero de pila, y no comprueba un posible desbordamiento de pila. Por tanto, no se devuelve un error NULL.
ERRORES¶
There is no error indication if the stack frame cannot be extended. (However, after a failed allocation, the program is likely to receive a SIGSEGV signal if it attempts to access the unallocated space.)
En muchos sistemas alloca() no puede ser utilizada dentro de la lista de argumentos de una llamada a función, porque el espacio de pila reservado por alloca() aparecería en mitad del espacio de pila para los argumentos de la función.
VÉASE TAMBIÉN¶
COLOFÓN¶
Esta página es parte de la versión 5.10 del proyecto Linux man-pages. Puede encontrar una descripción del proyecto, información sobre cómo informar errores y la última versión de esta página en https://www.kernel.org/doc/man-pages/.
TRADUCCIÓN¶
La traducción al español de esta página del manual fue creada por Sebastian Desimone <chipy@argenet.com.ar>, Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es>, Miguel Pérez Ibars <mpi79470@alu.um.es> y Marcos Fouces <marcos@debian.org>
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 debian-l10n-spanish@lists.debian.org.
6 Marzo 2019 | GNU |