]> sourceware.org Git - glibc.git/commitdiff
Add x32 support to sys/procfs.h
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 16 May 2012 17:20:06 +0000 (10:20 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 16 May 2012 17:20:06 +0000 (10:20 -0700)
ChangeLog
sysdeps/unix/sysv/linux/x86_64/sys/procfs.h

index 133ed98262d880c15bd974f5d7ff3fa921294f49..4ecd85a88f38833983bdde67586c9fc7cec6fba8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h (elf_greg_t): Use
+       "unsigned long long int" if __x86_64__ is defined.
+       (elf_fpregset_t): Check __x86_64__ instead of __WORDSIZE.
+
 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
 
        * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Don't include
index bfb7d8cd1e3c63b21d1ce5a6295ecbf1d189e50b..c907d355a9fc0a41cc7a0e3e554a7391bf6423f3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001, 2004 Free Software Foundation, Inc.
+/* Copyright (C) 2001, 2004, 2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 __BEGIN_DECLS
 
 /* Type for a general-purpose register.  */
+#ifdef __x86_64__
+typedef unsigned long long elf_greg_t;
+#else
 typedef unsigned long elf_greg_t;
+#endif
 
 /* And the whole bunch of them.  We could have used `struct
    user_regs_struct' directly in the typedef, but tradition says that
@@ -44,7 +48,7 @@ typedef unsigned long elf_greg_t;
 #define ELF_NGREG (sizeof (struct user_regs_struct) / sizeof(elf_greg_t))
 typedef elf_greg_t elf_gregset_t[ELF_NGREG];
 
-#if __WORDSIZE == 32
+#ifndef __x86_64__
 /* Register set for the floating-point registers.  */
 typedef struct user_fpregs_struct elf_fpregset_t;
 
This page took 0.127719 seconds and 5 git commands to generate.