NAME
privalloc – per–process private storage management |
SYNOPSIS
#include <u.h> #include <libc.h>
void** privalloc(void) |
DESCRIPTION
Privalloc returns a pointer to a per–process private storage location.
The location is not shared among processes, even if they share
the same data segments. It returns nil if there are no free slots
available. |
SOURCE
/sys/src/libc/9sys/privalloc.c |
SEE ALSO
exec(2) |