Blame sysdeps/unix/sysv/linux/microblaze/sys/user.h

Packit 6c4009
/* Copyright (C) 2009-2018 Free Software Foundation, Inc.
Packit 6c4009
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public License as
Packit 6c4009
   published by the Free Software Foundation; either version 2.1 of the
Packit 6c4009
   License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#ifndef _SYS_USER_H
Packit 6c4009
# define _SYS_USER_H	1
Packit 6c4009
Packit 6c4009
/* The whole purpose of this file is for GDB and GDB only.  Don't read
Packit 6c4009
   too much into it.  Don't use it for anything other than GDB unless
Packit 6c4009
   you know what you are doing.  */
Packit 6c4009
Packit 6c4009
struct user_fpregs_struct
Packit 6c4009
{
Packit 6c4009
  long int cwd;
Packit 6c4009
  long int swd;
Packit 6c4009
  long int twd;
Packit 6c4009
  long int fip;
Packit 6c4009
  long int fcs;
Packit 6c4009
  long int foo;
Packit 6c4009
  long int fos;
Packit 6c4009
  long int st_space [20];
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
struct user_regs_struct
Packit 6c4009
{
Packit 6c4009
  unsigned int gpr[32];
Packit 6c4009
  unsigned int pc;
Packit 6c4009
  unsigned int msr;
Packit 6c4009
  unsigned int ear;
Packit 6c4009
  unsigned int esr;
Packit 6c4009
  unsigned int fsr;
Packit 6c4009
  unsigned int btr;
Packit 6c4009
  unsigned int pvr[12];
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
struct user
Packit 6c4009
{
Packit 6c4009
  struct user_regs_struct	regs;
Packit 6c4009
  int				u_fpvalid;
Packit 6c4009
  struct user_fpregs_struct	elf_fpregset_t;
Packit 6c4009
  unsigned long int		u_tsize;
Packit 6c4009
  unsigned long int		u_dsize;
Packit 6c4009
  unsigned long int		u_ssize;
Packit 6c4009
  unsigned long			start_code;
Packit 6c4009
  unsigned long			start_stack;
Packit 6c4009
  long int			signal;
Packit 6c4009
  int				reserved;
Packit 6c4009
  struct user_regs_struct*	u_ar0;
Packit 6c4009
  struct user_fpregs_struct*	u_fpstate;
Packit 6c4009
  unsigned long int		magic;
Packit 6c4009
  char				u_comm [32];
Packit 6c4009
  int				u_debugreg [8];
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
#endif	/* _SYS_USER_H */