disable POSTK_DEBUG_* on x86_64

This commit is contained in:
Takayuki Okamoto
2017-09-07 22:20:22 +09:00
parent 707b245009
commit 0278a876db
6 changed files with 36 additions and 5 deletions

View File

@ -64,4 +64,10 @@ struct elf_prpsinfo64
};
#endif /* __HEADER_ELFCOREGPL_H */
#else /* POSTK_DEBUG_ARCH_DEP_18 */
#ifdef __x86_64
#include "../../arch/x86/kernel/include/elfcoregpl.h"
#elif __aarch64__
#include "../../arch/arm64/kernel/include/elfcoregpl.h"
#endif
#endif /* POSTK_DEBUG_ARCH_DEP_18 */