summaryrefslogtreecommitdiff
path: root/sys/man
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2015-09-06 20:43:05 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2015-09-06 20:43:05 +0200
commit7562da90e562e65156042574e088d4359a8fccba (patch)
treeaf8a1982ff6034d0f76ce4a4d049962602da8603 /sys/man
parent431cbe35f6a3f9c0c74d11937dfa7e06da34ecde (diff)
libc: remove privfree(), simplify privalloc()
Diffstat (limited to 'sys/man')
-rw-r--r--sys/man/2/privalloc15
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/man/2/privalloc b/sys/man/2/privalloc
index 20dd0bf2f..0634517e6 100644
--- a/sys/man/2/privalloc
+++ b/sys/man/2/privalloc
@@ -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