From 51b5df9b6aca82f71addba93f5ca82d95adf06d0 Mon Sep 17 00:00:00 2001 From: Abhinav Anil Sharma Date: Fri, 17 Jan 2025 11:55:23 -0500 Subject: [PATCH] Add XXX comment about moving to os.h --- core/unix/loader.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/unix/loader.c b/core/unix/loader.c index d8e1a8ef34f..3f0fb4eb65d 100644 --- a/core/unix/loader.c +++ b/core/unix/loader.c @@ -485,6 +485,9 @@ privload_check_new_map_bounds(elf_loader_t *elf, byte *map_base, byte *map_end) #endif #ifdef LINUX +/* XXX i#7192: Consider making this an os.h API, like the related os_map_file and + * os_unmap_file. + */ static byte * remap_file_func(file_t f, size_t *size DR_PARAM_INOUT, uint64 offs, app_pc addr, uint prot, map_flags_t map_flags)