diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-07-29 08:06:28 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-07-29 08:06:28 +0000 |
commit | a3b9cbb3390a75eb4f190cd4133c0efa025b91af (patch) | |
tree | 312cce8865c9499e368a6350b4b2d11b014e16e0 /gdb/go32-nat.c | |
parent | 6c56c06965e54986e5e5ad75f399a914b4b1becd (diff) | |
download | gdb-a3b9cbb3390a75eb4f190cd4133c0efa025b91af.zip gdb-a3b9cbb3390a75eb4f190cd4133c0efa025b91af.tar.gz gdb-a3b9cbb3390a75eb4f190cd4133c0efa025b91af.tar.bz2 |
* go32-nat.c (get_cr3): Temporary disable support for page tables
in UMBs, as it is incomplete.
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index b2828eb..2cf3e29 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -1703,6 +1703,7 @@ get_cr3 (void) cr3 = _farnspeekl (taskbase + 0x1c) & ~0xfff; if (cr3 > 0xfffff) { +#if 0 /* not fully supported yet */ /* The Page Directory is in UMBs. In that case, CWSDPMI puts the first Page Table right below the Page Directory. Thus, the first Page Table's entry for its own address and the Page @@ -1723,6 +1724,7 @@ get_cr3 (void) break; } } +#endif if (cr3 > 0xfffff) cr3 = 0; |