2023-08-03 00:29:40 +03:00
|
|
|
/*
|
|
|
|
* arch/loongarch/include/asm/processor.h:
|
|
|
|
* TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE / 3)
|
|
|
|
*/
|
|
|
|
#define TASK_UNMAPPED_BASE \
|
|
|
|
TARGET_PAGE_ALIGN((1ull << (TARGET_VIRT_ADDR_SPACE_BITS - 1)) / 3)
|
|
|
|
|
2023-08-03 01:17:33 +03:00
|
|
|
/* arch/riscv/include/asm/elf.h */
|
|
|
|
#define ELF_ET_DYN_BASE (TASK_UNMAPPED_BASE * 2)
|
|
|
|
|
2022-09-06 03:08:35 +03:00
|
|
|
#include "../generic/target_mman.h"
|