projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82c5a86
)
Update comment and make accurate.
author
Neal Norwitz
<nnorwitz@gmail.com>
Thu, 16 Feb 2006 08:08:54 +0000
(08:08 +0000)
committer
Neal Norwitz
<nnorwitz@gmail.com>
Thu, 16 Feb 2006 08:08:54 +0000
(08:08 +0000)
Modules/mmapmodule.c
patch
|
blob
|
history
diff --git
a/Modules/mmapmodule.c
b/Modules/mmapmodule.c
index 7a68de4ccab10468edeb43550c5ffd8ed624758a..ef6d9f8be64118a09a93331f1bd3ace5a3778b59 100644
(file)
--- a/
Modules/mmapmodule.c
+++ b/
Modules/mmapmodule.c
@@
-54,7
+54,7
@@
my_getpagesize(void)
#include <string.h>
#include <sys/types.h>
-/*
maybe define MAP_ANON in terms of MAP_ANONYMOUS
*/
+/*
Prefer MAP_ANONYMOUS since MAP_ANON is deprecated according to man page.
*/
#if !defined(MAP_ANONYMOUS) && defined(MAP_ANON)
# define MAP_ANONYMOUS MAP_ANON
#endif