mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00

Provide default values that are as close as possible to the values used by the guest's kernel. Tested-by: Helge Deller <deller@gmx.de> Reviewed-by: Helge Deller <deller@gmx.de> Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
8 lines
246 B
C
8 lines
246 B
C
/*
|
|
* arch/nios2/include/asm/processor.h:
|
|
* TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE / 3)
|
|
* TASK_SIZE 0x7FFF0000UL
|
|
*/
|
|
#define TASK_UNMAPPED_BASE TARGET_PAGE_ALIGN(0x7FFF0000 / 3)
|
|
|
|
#include "../generic/target_mman.h"
|