aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2006-04-06 14:51:35 -0700
committerH. Peter Anvin <hpa@zytor.com>2006-04-06 14:51:35 -0700
commit326e55533be812d204707084110cd19666fa4ef0 (patch)
tree292a64e42de89c5d040d38d151e7005ee0d78119
parentbe962ad974eb6cbd4557a8902cbc31f5c20bf42b (diff)
downloadklibc-326e55533be812d204707084110cd19666fa4ef0.tar.gz
[klibc] Fix comment: __getpageshift not __getpagesizeklibc-1.3.4
Fix a mistaken reference to __getpagesize() in a comment (there is no such function.) It is supposed to be __getpageshift(). Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--include/klibc/sysconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klibc/sysconfig.h b/include/klibc/sysconfig.h
index 48d62a403c28a..1a9cdea58bb86 100644
--- a/include/klibc/sysconfig.h
+++ b/include/klibc/sysconfig.h
@@ -58,7 +58,7 @@
* On most architectures, this is always 12, but on some
* architectures it can be a different number, or the current
* page size. If this is dependent on the page size, define
- * this to an expression which includes __getpagesize().
+ * this to an expression which includes __getpageshift().
*/
#ifndef _KLIBC_MMAP2_SHIFT
# define _KLIBC_MMAP2_SHIFT 12