File: PR_SET_VMA.2const

package info (click to toggle)
manpages 6.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 19,808 kB
  • sloc: sh: 503; python: 222; perl: 165; makefile: 27; lisp: 22
file content (81 lines) | stat: -rw-r--r-- 1,942 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.\" Copyright 2021, Colin Cross <ccross@google.com>
.\" Copyright 2023, Nick Gregory <nick@nickgregory.me>
.\" Copyright 2024, Alejandro Colomar <alx@kernel.org>
.\"
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.TH PR_SET_VMA 2const 2024-06-15 "Linux man-pages (unreleased)"
.SH NAME
PR_SET_VMA
\-
set an attribute for virtual memory areas
.SH LIBRARY
Standard C library
.RI ( libc ", " \-lc )
.SH SYNOPSIS
.nf
.BR "#include <linux/prctl.h>" "  /* Definition of " PR_* " constants */"
.B #include <sys/prctl.h>
.P
.BI "int prctl(PR_SET_VMA, long " attr ", unsigned long " addr \
", unsigned long " size ,
.BI "          const char *_Nullable " val );
.fi
.SH DESCRIPTION
Sets an attribute specified in
.I attr
for virtual memory areas starting from the address specified in
.I addr
and spanning the size specified in
.IR size .
.I val
specifies the value of the attribute to be set.
.P
Note that assigning an attribute to a virtual memory area
might prevent it from being merged with adjacent virtual memory areas
due to the difference in that attribute's value.
.P
Currently,
.I attr
must be one of:
.TP
.B PR_SET_VMA_ANON_NAME
Set a name for anonymous virtual memory areas.
.I val
should be a pointer to a null-terminated string containing the name.
The name length including null byte cannot exceed 80 bytes.
If
.I val
is NULL, the name of the appropriate anonymous virtual memory areas
will be reset.
The name can contain only printable ascii characters
.RB ( isprint (3)),
except
.BR \[aq][\[aq] ,
.BR \[aq]]\[aq] ,
.BR \[aq]\[rs]\[aq] ,
.BR \[aq]$\[aq] ,
and
.BR \[aq]\[ga]\[aq] .
.SH RETURN VALUE
On success,
0 is returned.
On error, \-1 is returned, and
.I errno
is set to indicate the error.
.SH ERRORS
.TP
.B EINVAL
.I attr
is not a valid attribute.
.TP
.B EINVAL
.I addr
is an invalid address.
.SH STANDARDS
Linux.
.SH HISTORY
Linux 5.17.
.\" Commit 9a10064f5625d5572c3626c1516e0bebc6c9fe9b
.SH SEE ALSO
.BR prctl (2)