From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4868 invoked by alias); 18 Apr 2004 02:02:49 -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 4791 invoked from network); 18 Apr 2004 02:02:48 -0000 Received: from unknown (HELO sunsite.ms.mff.cuni.cz) (195.113.15.26) by sources.redhat.com with SMTP; 18 Apr 2004 02:02:48 -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 i3HNpIHY006136; Sun, 18 Apr 2004 01:51:18 +0200 Received: (from jakub@localhost) by sunsite.ms.mff.cuni.cz (8.12.8/8.12.8/Submit) id i3H9p5P4028389; Sat, 17 Apr 2004 11:51:05 +0200 Date: Sun, 18 Apr 2004 02:02:00 -0000 From: Jakub Jelinek To: Ulrich Drepper Cc: Glibc hackers Subject: [PATCH] Fix x86-64 linuxthreads Message-ID: <20040417095104.GJ514@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2004-04/txt/msg00051.txt.bz2 Hi! 2004-04-17 Jakub Jelinek * sysdeps/x86_64/tls.h [!__ASSEMBLER__]: Include tcb-offsets.h. --- libc/linuxthreads/sysdeps/x86_64/tls.h.jj 2003-07-21 13:41:09.000000000 +0200 +++ libc/linuxthreads/sysdeps/x86_64/tls.h 2004-04-17 13:14:25.328365129 +0200 @@ -41,6 +41,9 @@ typedef struct void *self; /* Pointer to the thread descriptor. */ int multiple_threads; } tcbhead_t; + +#else /* __ASSEMBLER__ */ +# include #endif Jakub