(root)/
strace-6.5/
src/
linux/
i386/
arch_fpregset.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_FPREGSET_H
       9  # define STRACE_ARCH_FPREGSET_H
      10  
      11  typedef struct {
      12  	unsigned int cwd;
      13  	unsigned int swd;
      14  	unsigned int twd;
      15  	unsigned int fip;
      16  	unsigned int fcs;
      17  	unsigned int foo;
      18  	unsigned int fos;
      19  	unsigned int st_space[20];
      20  } struct_fpregset;
      21  
      22  # define HAVE_ARCH_FPREGSET 1
      23  
      24  #endif /* !STRACE_ARCH_FPREGSET_H */