(root)/
strace-6.5/
src/
linux/
sparc/
arch_prstatus_regset.h
       1  /*
       2   * Copyright (c) 2021 The strace developers.
       3   * All rights reserved.
       4   *
       5   * SPDX-License-Identifier: LGPL-2.1-or-later
       6   */
       7  
       8  #ifndef STRACE_ARCH_PRSTATUS_REGSET_H
       9  # define STRACE_ARCH_PRSTATUS_REGSET_H
      10  
      11  typedef struct {
      12  	unsigned int g[8];
      13  	unsigned int o[8];
      14  	unsigned int l[8];
      15  	unsigned int i[8];
      16  	unsigned int psr;
      17  	unsigned int pc;
      18  	unsigned int npc;
      19  	unsigned int y;
      20  	unsigned int wim;
      21  	unsigned int tbr;
      22  } struct_prstatus_regset;
      23  
      24  # define HAVE_ARCH_PRSTATUS_REGSET 1
      25  
      26  #endif /* !STRACE_ARCH_PRSTATUS_REGSET_H */