ptrace.h 377 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2011 The Chromium OS Authors.
  4. */
  5. #ifndef __ASM_SANDBOX_PTRACE_H
  6. #define __ASM_SANDBOX_PTRACE_H
  7. #ifndef __ASSEMBLY__
  8. /* This is not used in the sandbox architecture, but required by U-Boot */
  9. struct pt_regs {
  10. };
  11. #ifdef __KERNEL__
  12. extern void show_regs(struct pt_regs *);
  13. #endif
  14. #endif /* __ASSEMBLY__ */
  15. #endif