*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->OpenBSD man pages -> alloca (3)              
Title
Content
Arch
Section
 

ALLOCA(3)

Contents


NAME    [Toc]    [Back]

     alloca - memory allocator

SYNOPSIS    [Toc]    [Back]

     #include <stdlib.h>

     void *
     alloca(size_t size);

DESCRIPTION    [Toc]    [Back]

     The alloca() function allocates size bytes of space  in  the
stack frame of
     the  caller.  This temporary space is automatically freed on
return.

RETURN VALUES    [Toc]    [Back]

     The alloca() function returns a pointer to the beginning  of
the allocated
     space.

SEE ALSO    [Toc]    [Back]

      
      
     pagesize(1), brk(2), calloc(3), malloc(3), realloc(3)

BUGS    [Toc]    [Back]

     The  alloca() function is machine dependent; its use is discouraged.

     The alloca() function is slightly unsafe because  it  cannot
ensure that
     the  pointer  returned points to a valid and usable block of
memory.  The
     allocation made may exceed the bounds of the stack, or  even
go further
     into  other objects in memory, and alloca() cannot determine
such an error.
  Avoid alloca() with large unbounded allocations.

OpenBSD      3.6                            May      2,      1991
[ Back ]
 Similar pages
Name OS Title
mallopt Tru64 Provide a memory allocator
free NetBSD kernel memory allocator
malloc OpenBSD kernel memory allocator
arealloc Tru64 arena memory allocator
amallopt Tru64 arena memory allocator
FREE NetBSD kernel memory allocator
calloc Tru64 Provide a memory allocator
free Tru64 Provide a memory allocator
mallinfo Tru64 Provide a memory allocator
realloc Tru64 Provide a memory allocator
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service