user.h 476 B

123456789101112131415161718192021222324252627
  1. /*
  2. * This file is subject to the terms and conditions of the LGPL V2.1
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2019 Kalray Inc.
  7. */
  8. #ifndef _SYS_USER_H
  9. #define _SYS_USER_H 1
  10. struct user_regs_struct
  11. {
  12. /* GPR */
  13. unsigned long long gpr_regs[64];
  14. /* SFR */
  15. unsigned long lc;
  16. unsigned long le;
  17. unsigned long ls;
  18. unsigned long ra;
  19. unsigned long cs;
  20. unsigned long spc;
  21. };
  22. #endif