mirror of https://github.com/xemu-project/xemu.git
16 lines
364 B
C
16 lines
364 B
C
#ifndef HPPA_TARGET_MMAN_H
|
|
#define HPPA_TARGET_MMAN_H
|
|
|
|
#define TARGET_MADV_MERGEABLE 65
|
|
#define TARGET_MADV_UNMERGEABLE 66
|
|
#define TARGET_MADV_HUGEPAGE 67
|
|
#define TARGET_MADV_NOHUGEPAGE 68
|
|
#define TARGET_MADV_DONTDUMP 69
|
|
#define TARGET_MADV_DODUMP 70
|
|
#define TARGET_MADV_WIPEONFORK 71
|
|
#define TARGET_MADV_KEEPONFORK 72
|
|
|
|
#include "../generic/target_mman.h"
|
|
|
|
#endif
|