Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ valloc(3) — 386BSD 1.0

Media Vault

Software Library

Restoration Projects

Artifacts Sought

VALLOC(3)                 386BSD Programmer's Manual                 VALLOC(3)

NAME
     valloc - aligned memory allocation function

SYNOPSIS
     #include <unistd.h>

     char *
     valloc(unsigned size)

DESCRIPTION
     Valloc is obsoleted by the current version of malloc(3), which aligns
     page-sized and larger allocations.

     The valloc() function allocates size bytes aligned on a page boundary.
     It is implemented by calling malloc(3) with a slightly larger request,
     saving the true beginning of the block allocated, and returning a
     properly aligned pointer.

RETURN VALUES
     The valloc() function returns a pointer to the allocated space if
     successful; otherwise a null pointer is returned

HISTORY
     The valloc() function appeared in 3.0BSD.

BUGS
     A vfree function has not been implemented.

3rd Berkeley Distribution       April 19, 1991                               1



































Typewritten Software • bear@typewritten.org • Edmonds, WA 98026