diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-04-06 22:15:36 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-04-06 22:15:36 +0200 |
commit | 71f4f63143d2ab0987d3315cdcd5d20e233d68d7 (patch) | |
tree | 3aad80b71a756aa54a172a41c6e35ce6be3d78a6 | |
parent | 34e83eab4497bfbe8da0cbb7bd4f59c0021bf285 (diff) | |
download | gnumach-71f4f63143d2ab0987d3315cdcd5d20e233d68d7.tar.gz gnumach-71f4f63143d2ab0987d3315cdcd5d20e233d68d7.tar.bz2 gnumach-71f4f63143d2ab0987d3315cdcd5d20e233d68d7.zip |
Add warning about one of the next 64bit fixes to make
-rw-r--r-- | i386/intel/pmap.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index d67d39d1..0f650f2a 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -1396,6 +1396,9 @@ void pmap_destroy(pmap_t p) page_dir = p->dirbase; #endif +#ifdef __x86_64__ +#warning FIXME 64bit need to free l3 +#endif /* * Free the memory maps, then the * pmap structure. |