ptrace.h 394 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (C) 2005-2017 Andes Technology Corporation
  3. #ifndef __UAPI_ASM_NDS32_PTRACE_H
  4. #define __UAPI_ASM_NDS32_PTRACE_H
  5. #ifndef __ASSEMBLY__
  6. /*
  7. * User structures for general purpose register.
  8. */
  9. struct user_pt_regs {
  10. long uregs[26];
  11. long fp;
  12. long gp;
  13. long lp;
  14. long sp;
  15. long ipc;
  16. long lb;
  17. long le;
  18. long lc;
  19. long syscallno;
  20. };
  21. #endif
  22. #endif