public inbox for libc-ports@sourceware.org
 help / color / mirror / Atom feed
From: Chris Metcalf <cmetcalf@tilera.com>
To: <libc-ports@sourceware.org>
Subject: [PATCH 03/14] tile: update pthread_attr_t and struct siginfo names
Date: Mon, 14 May 2012 19:57:00 -0000	[thread overview]
Message-ID: <201205141957.q4EJvDCX007432@farm-0002.internal.tilera.com> (raw)
In-Reply-To: <4FB161CE.6070905@tilera.com>

This adds a tag to the pthread_attr_t underlying type so we can
forward-declare it, and removes the siginfo_t type, to match
changes in the main tree.
---
 ChangeLog.tile                                     |    8 ++++++++
 sysdeps/unix/sysv/linux/tile/bits/siginfo.h        |   12 +++++++++---
 .../unix/sysv/linux/tile/nptl/bits/pthreadtypes.h  |   11 +++++++----
 3 files changed, 24 insertions(+), 7 deletions(-)

diff --git a/ChangeLog.tile b/ChangeLog.tile
index a8b2458..4846802 100644
--- a/ChangeLog.tile
+++ b/ChangeLog.tile
@@ -1,5 +1,13 @@
 2012-05-12  Chris Metcalf  <cmetcalf@tilera.com>
 
+	* sysdeps/unix/sysv/linux/tile/bits/siginfo.h: Don't name
+	siginfo_t struct.  Add forward declaration of pthread_attr_t and
+	use it in sigevent.
+	* sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h: Name
+	pthread_attr_t union.
+
+2012-05-12  Chris Metcalf  <cmetcalf@tilera.com>
+
 	* sysdeps/tile/crti.S: New file, based on compiler output
 	for sysdeps/generic/initfini.c.
 	* sysdeps/tile/crtn.S: Likewise.
diff --git a/sysdeps/unix/sysv/linux/tile/bits/siginfo.h b/sysdeps/unix/sysv/linux/tile/bits/siginfo.h
index aeecd19..44ffcc0 100644
--- a/sysdeps/unix/sysv/linux/tile/bits/siginfo.h
+++ b/sysdeps/unix/sysv/linux/tile/bits/siginfo.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2011 Free Software Foundation, Inc.
+/* Copyright (C) 2011-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
 
@@ -47,7 +47,7 @@ typedef union sigval
 #  define __SI_PAD_SIZE     ((__SI_MAX_SIZE / sizeof (int)) - 3)
 # endif
 
-typedef struct siginfo
+typedef struct
   {
     int si_signo;		/* Signal number.  */
     int si_errno;		/* If non-zero, an errno value associated with
@@ -275,6 +275,12 @@ enum
 #  define __SIGEV_PAD_SIZE	((__SIGEV_MAX_SIZE / sizeof (int)) - 3)
 # endif
 
+/* Forward declaration.  */
+# ifndef __have_pthread_attr_t
+typedef union pthread_attr_t pthread_attr_t;
+#  define __have_pthread_attr_t	1
+# endif
+
 typedef struct sigevent
   {
     sigval_t sigev_value;
@@ -292,7 +298,7 @@ typedef struct sigevent
 	struct
 	  {
 	    void (*_function) (sigval_t);	/* Function to start.  */
-	    void *_attribute;			/* Really pthread_attr_t.  */
+	    pthread_attr_t *_attribute;		/* Thread attributes.  */
 	  } _sigev_thread;
       } _sigev_un;
   } sigevent_t;
diff --git a/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h b/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
index d840ce5..ac51e3b 100644
--- a/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
+++ b/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2011 Free Software Foundation, Inc.
+/* Copyright (C) 2011-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Based on work contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
    Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
@@ -50,12 +50,15 @@
 typedef unsigned long int pthread_t;
 
 
-typedef union
+union pthread_attr_t
 {
   char __size[__SIZEOF_PTHREAD_ATTR_T];
   long int __align;
-} pthread_attr_t;
-
+};
+#ifndef __have_pthread_attr_t
+typedef union pthread_attr_t pthread_attr_t;
+# define __have_pthread_attr_t	1
+#endif
 
 #if __WORDSIZE == 64
 typedef struct __pthread_internal_list
-- 
1.6.5.2

  parent reply	other threads:[~2012-05-14 19:57 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-14 19:49 [PATCH 00/14] Updates to tile architecture for 2.16 Chris Metcalf
2012-05-14 19:56 ` [PATCH 01/14] Add _SNSECONDS_T_TYPE for linux-generic Chris Metcalf
2012-05-14 19:57 ` [PATCH 02/14] tile: Remove elf/ and create crti.S/crtn.S Chris Metcalf
2012-05-14 19:57 ` Chris Metcalf [this message]
2012-05-14 19:57 ` [PATCH 04/14] tile: remove stale #define of ELF_MACHINE_PLTREL_OVERLAP Chris Metcalf
2012-05-14 19:58 ` [PATCH 08/14] tile: allow memcpy(p, p, n) without corrupting memory at "p" Chris Metcalf
2012-05-14 19:58 ` [PATCH 06/14] tile: support stackguard-macros.h header Chris Metcalf
2012-05-14 19:58 ` [PATCH 07/14] tile: avoid using _LP64 Chris Metcalf
2012-05-14 19:58 ` [PATCH 05/14] linux-generic: add wordsize-32 version of prlimit64/fanotify syscalls Chris Metcalf
2012-05-14 19:59 ` [PATCH 12/14] tile: add include <features.h> to <sys/dataplane.h> Chris Metcalf
2012-05-14 19:59 ` [PATCH 10/14] tile: fix broken TLS_GD macros Chris Metcalf
2012-05-14 19:59 ` [PATCH 11/14] tile: fix bug in CFI definitions for clone.S Chris Metcalf
2012-05-14 19:59 ` [PATCH 09/14] tilegx: small performance fix for string routines Chris Metcalf
2012-05-14 20:00 ` [PATCH 13/14] tile: align stack for tilegx32 Chris Metcalf
2012-05-14 20:02 ` [PATCH 14/14] tile: add abilist files Chris Metcalf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201205141957.q4EJvDCX007432@farm-0002.internal.tilera.com \
    --to=cmetcalf@tilera.com \
    --cc=libc-ports@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).