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

@@ -116,4 +116,10 @@ struct thread;
extern void arch_fill_prstatus(struct elf_prstatus64 *prstatus, struct thread *thread, void *regs0);
#endif /* __HEADER_ELFCORE_H */
#else /* POSTK_DEBUG_ARCH_DEP_18 */
#ifdef __x86_64
#include "../../arch/x86/kernel/include/elfcore.h"
#elif __aarch64__
#include "../../arch/arm64/kernel/include/elfcore.h"
#endif
#endif /* POSTK_DEBUG_ARCH_DEP_18 */