qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

target_mman.h (364B)


      1 #ifndef HPPA_TARGET_MMAN_H
      2 #define HPPA_TARGET_MMAN_H
      3 
      4 #define TARGET_MADV_MERGEABLE 65
      5 #define TARGET_MADV_UNMERGEABLE 66
      6 #define TARGET_MADV_HUGEPAGE 67
      7 #define TARGET_MADV_NOHUGEPAGE 68
      8 #define TARGET_MADV_DONTDUMP 69
      9 #define TARGET_MADV_DODUMP 70
     10 #define TARGET_MADV_WIPEONFORK 71
     11 #define TARGET_MADV_KEEPONFORK 72
     12 
     13 #include "../generic/target_mman.h"
     14 
     15 #endif