diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-12-03 13:33:43 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-12-03 13:33:43 +0100 |
commit | f1ed5bfa8385a81d72313604e90b9096f8bf2ead (patch) | |
tree | 4e00700390d0228f6ffb1f375c4c86df87996918 /winsup/cygwin/ChangeLog | |
parent | 8a14e51901a40c5bfaf09915f88249173d9b2b05 (diff) | |
download | newlib-f1ed5bfa8385a81d72313604e90b9096f8bf2ead.zip newlib-f1ed5bfa8385a81d72313604e90b9096f8bf2ead.tar.gz newlib-f1ed5bfa8385a81d72313604e90b9096f8bf2ead.tar.bz2 |
Fix /proc/<PID>/maps output for PEB and TEBs on W10 1511
* fhandler_process.cc (heap_info::fill_if_match): Return NULL, not 0.
(thread_info::fill_if_match): Ditto.
(thread_info::fill_if_match): New method to extract TEB info from
PEB/TEB region since W10 1511.
(format_process_maps): Drop outdated FIXME comment. Add code to handle
PEB/TEB region since W10 1511.
* mmap.cc (posix_madvise): Align comment to new W10 1511 version.
* wincap.h (wincaps::has_new_pebteb_region): New element.
* wincap.cc: Implement above element throughout.
(wincap_10_1511): New global wincaps to support Windows 10 since 1511.
(wincapc::init): Use wincap_10_1511 for W10 builds >= 10586.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/ChangeLog')
-rw-r--r-- | winsup/cygwin/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 803cb4f..0cc944e 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,19 @@ 2015-12-03 Corinna Vinschen <corinna@vinschen.de> + * fhandler_process.cc (heap_info::fill_if_match): Return NULL, not 0. + (thread_info::fill_if_match): Ditto. + (thread_info::fill_if_match): New method to extract TEB info from + PEB/TEB region since W10 1511. + (format_process_maps): Drop outdated FIXME comment. Add code to handle + PEB/TEB region since W10 1511. + * mmap.cc (posix_madvise): Align comment to new W10 1511 version. + * wincap.h (wincaps::has_new_pebteb_region): New element. + * wincap.cc: Implement above element throughout. + (wincap_10_1511): New global wincaps to support Windows 10 since 1511. + (wincapc::init): Use wincap_10_1511 for W10 builds >= 10586. + +2015-12-03 Corinna Vinschen <corinna@vinschen.de> + x86_64 only: * dcrt0.cc (_dll_crt0): Always move stack to pthread stack area. Explain why. |