File: getpagesize.2

package info (click to toggle)
manpages-es 0.4a-2
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 3,592 kB
  • ctags: 3
  • sloc: sh: 59; makefile: 42
file content (56 lines) | stat: -rw-r--r-- 2,344 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
.\" Hey Emacs! This file is -*- nroff -*- source.
.\"
.\" Copyright 1993 Rickard E. Faith (faith@cs.unc.edu)
.\" Portions from /usr/include/unistd.h are
.\"               Copyright (C) 1991, 1992 Free Software Foundation, Inc.
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one
.\" 
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\" 
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" Modified Tue Oct 22 00:22:35 EDT 1996 by Eric S. Raymond <esr@thyrsus.com>
.\" Translated into Spanish Fri Feb 13 16:49:57 CET 1998 by Gerardo
.\" Aburruzaga Garca <gerardo.aburruzaga@uca.es>
.\"
.TH GETPAGESIZE 2 "13 Febrero 1998" "Linux 0.99.11" "Manual del Programador Linux"
.SH NOMBRE
getpagesize \- obtiene el tamao de pgina del sistema
.SH SINOPSIS
.B #include <unistd.h>
.sp
.B size_t getpagesize(void);
.SH DESCRIPCIN
Devuelve el nmero de bytes de una pgina. ste es el tamao de pgina
del sistema, que no es necesariamente el mismo que el tamao de pgina
de hardware.
.SH OBSERVACIONES
.B getpagesize
est implementada como una funcin de biblioteca en las DLL
4.4.1. Dependiendo de lo que se defina cuando la biblioteca se
compile, esta funcin devuelve
.B EXEC_PAGESIZE
(puesto a 4096 en Linux 0.99.11),
.B NBPG
(puesto a 4096 en Linux 0.99.11), o
.B NBPC
(no definido ni en Linux 0.99.11 ni en las bibliotecas DLL 4.4.1).
.SH CONFORME CON
SVr4, 4.4BSD (esta llamada al sistema apareci por 1 vez en 4.2BSD).
.SH "VASE TAMBIN"
.BR sbrk (2)