Skip to content

Commit

Permalink
linux-user: Extend image_info struct with MIPS fp_abi and interp_fp_a…
Browse files Browse the repository at this point in the history
…bi fields

Add MIPS specific image_info struct fields fp_abi and interp_fp_abi
to store executable and interpreter fp_abi values (based on kernel
struct arch_elf_state in mips/include/asm/elf.h).

Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com>
  • Loading branch information
Stefan Markovic authored and AMarkovic committed Oct 29, 2018
1 parent 3f8e8ac commit 74cfc70
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions linux-user/qemu.h
Expand Up @@ -61,6 +61,10 @@ struct image_info {
abi_ulong interpreter_loadmap_addr;
abi_ulong interpreter_pt_dynamic_addr;
struct image_info *other_info;
#ifdef TARGET_MIPS
int fp_abi;
int interp_fp_abi;
#endif
};

#ifdef TARGET_I386
Expand Down

0 comments on commit 74cfc70

Please sign in to comment.