]> git.lizzy.rs Git - plan9front.git/blobdiff - sys/man/2/privalloc
merge
[plan9front.git] / sys / man / 2 / privalloc
index 20dd0bf2f60ae996eda10a823e322375dc09ccfb..0634517e6d948a8c0e6adfa5173fc174b3cde5cf 100644 (file)
@@ -1,6 +1,6 @@
 .TH PRIVALLOC 2
 .SH NAME
-privalloc, privfree \- per-process private storage management
+privalloc \- per-process private storage management
 .SH SYNOPSIS
 .B #include <u.h>
 .br
@@ -9,9 +9,6 @@ privalloc, privfree \- per-process private storage management
 .PP
 .B
 void** privalloc(void)
-.PP
-.B
-void   privfree(void **p)
 .SH DESCRIPTION
 .I Privalloc
 returns a pointer to a per-process private storage location.
@@ -20,16 +17,6 @@ even if they share the same data segments.
 It returns
 .B nil
 if there are no free slots available.
-.PP
-.I Privfree
-releases a location allocated with
-.IR privalloc .
-It is legal to call
-.I privfree
-with
-.I p
-set to
-.BR nil .
 .SH SOURCE
 .B /sys/src/libc/9sys/privalloc.c
 .SH SEE ALSO