ptrace.h 377 B

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