From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32340 invoked by alias); 10 Sep 2003 20:00:59 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 32324 invoked from network); 10 Sep 2003 20:00:59 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.19.66) by sources.redhat.com with SMTP; 10 Sep 2003 20:00:59 -0000 Received: from sunsite.ms.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8) with ESMTP id h8AHxKlt029617; Wed, 10 Sep 2003 19:59:20 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id h8AHxK3d029615; Wed, 10 Sep 2003 19:59:20 +0200 Date: Wed, 10 Sep 2003 20:00:00 -0000 From: Jakub Jelinek To: Steve Munroe Cc: Ulrich Drepper , Glibc hackers , Paul Mackerras , Roland McGrath Subject: Re: [PATCH] Fix binary compatibility of bits/types.h Message-ID: <20030910175920.GT12344@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-SW-Source: 2003-09/txt/msg00042.txt.bz2 On Wed, Sep 10, 2003 at 02:55:24PM -0500, Steve Munroe wrote: > There also seems to be a problem with pthread_t between linuxthreads and > nptl. pthread_t:m is OK for Linuxthreads but nplt needs > pthread_t:P16__opaque_pthread. Current NPTL has: typedef unsigned long int pthread_t; Jakub