diff options
author | Bruno Haible <bruno@clisp.org> | 2017-03-15 00:12:50 +0100 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2017-03-15 00:13:37 +0100 |
commit | e0e952c7b65bc33da5410182423371ebe090188b (patch) | |
tree | 58b3897f9ebf4e1f3b54ed3fb4905509f968a432 /lib/vma-iter.c | |
parent | 47cbe8bab23d3d7d064334e6ed34975a1e503227 (diff) | |
download | gnulib-e0e952c7b65bc33da5410182423371ebe090188b.tar.gz |
vma-iter: Add comment about AIX.
* lib/vma-iter.c: Add comment about why this module is not implemented
on AIX.
Diffstat (limited to 'lib/vma-iter.c')
-rw-r--r-- | lib/vma-iter.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/vma-iter.c b/lib/vma-iter.c index d5ff6ff9d3..07244d3ff5 100644 --- a/lib/vma-iter.c +++ b/lib/vma-iter.c @@ -49,6 +49,10 @@ # include <sys/mman.h> /* mquery */ #endif +/* Note: On AIX, there is a /proc/$pic/map file, that contains records of type + prmap_t, defined in <sys/procfs.h>. But it lists only the virtual memory + areas that are connected to a file, not the anonymous ones. */ + /* Support for reading text files in the /proc file system. */ |