From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24987 invoked by alias); 31 Jan 2006 14:30:17 -0000 Received: (qmail 24971 invoked by uid 22791); 31 Jan 2006 14:30:16 -0000 X-Spam-Check-By: sourceware.org Received: from mo01.iij4u.or.jp (HELO mo01.iij4u.or.jp) (210.130.0.20) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 31 Jan 2006 14:30:15 +0000 Received: MO(mo01) for id k0VEUCpg026507; Tue, 31 Jan 2006 23:30:12 +0900 (JST) Received: from localhost (220.30.30.125.dy.iij4u.or.jp [125.30.30.220]) by r-rr.iij4u.or.jp (4U-MR/r-rr) id k0VEUCGh022959 for ; Tue, 31 Jan 2006 23:30:12 +0900 (JST) Date: Tue, 31 Jan 2006 14:30:00 -0000 Message-Id: <20060131.233010.93478310.kkojima@rr.iij4u.or.jp> To: libc-hacker@sources.redhat.com Subject: [PATCH] SH tiny tweak From: Kaz Kojima Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Mailing-List: contact libc-hacker-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sourceware.org X-SW-Source: 2006-01/txt/msg00103.txt.bz2 Hi, On SH, I've found an error when compiling nptl/tst-cancel24 with the C++ compiler: ../include/setjmp.h:8: error: non-local function `void __longjmp(*, int)' uses anonymous type but missed to send the attached patch to fix it. Regards, kaz -- 2006-01-31 Kaz Kojima * sysdeps/sh/bits/setjmp.h: Use the structure with tag. diff -uprN ORIG/libc/sysdeps/sh/bits/setjmp.h LOCAL/libc/sysdeps/sh/bits/setjmp.h --- ORIG/libc/sysdeps/sh/bits/setjmp.h 2006-01-19 08:45:42.000000000 +0900 +++ LOCAL/libc/sysdeps/sh/bits/setjmp.h 2006-01-31 14:30:59.000000000 +0900 @@ -25,7 +25,7 @@ #endif #ifndef _ASM -typedef struct +typedef struct __jmp_buf_s { /* Callee-saved registers r8 through r15. */ int __regs[8];