From patchwork Tue May 20 14:18:33 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 350730 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id EE3F3140081 for ; Wed, 21 May 2014 00:19:17 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:in-reply-to :references; q=dns; s=default; b=Qleoo0GNZsBmGnKUfQaUI0wxafOUXIP gyfOI27Ex3RqqMyF9mRYCsKly8rYpXhQyKqF3qKCclFgfJCnBVy9yHHqlnCRDdoW No6ZodPmaDmivOTk2x9qbxNKJDKmW9a9ZUZOxezFTFGSDsLkEnuesW6qd+Maxxf+ I3NjmY8RDhHU= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:in-reply-to :references; s=default; bh=XqHdlCPQR4aHskneu+KtnFgikn8=; b=LV1Il bKs3kjTjKoeimvooDD2PmvhRa0vQaMmz2yLBeSkKb/3u5QXRaxCZGW7/Qri6zLr+ SoMOPOXorVKMCOsktlFB9GYC7K/atEvw3SfOwHzbi1yb3bAoXsMVYqhxOZynZmke vvXSphZzs5pXyWIm3OWe6oaqonbtgUmVGDQlO8= Received: (qmail 25843 invoked by alias); 20 May 2014 14:18:47 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 25689 invoked by uid 89); 20 May 2014 14:18:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL, BAYES_50, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qc0-f169.google.com X-Received: by 10.224.165.18 with SMTP id g18mr20572065qay.20.1400595523367; Tue, 20 May 2014 07:18:43 -0700 (PDT) From: Richard Henderson To: libc-alpha@sourceware.org Subject: [COMMITTED 3/3] alpha: fix sa_flags type (BZ 16967) Date: Tue, 20 May 2014 07:18:33 -0700 Message-Id: <1400595513-6489-3-git-send-email-rth@twiddle.net> In-Reply-To: <1400595513-6489-1-git-send-email-rth@twiddle.net> References: <1400595513-6489-1-git-send-email-rth@twiddle.net> --- ChangeLog | 4 ++++ NEWS | 2 +- sysdeps/unix/sysv/linux/alpha/bits/sigaction.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8fa58d9..2dae335 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2014-05-20 Richard Henderson + [BZ #16967] + * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction): + Change type of sa_flags from unsigned int to int. + [BZ #16966] * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file. diff --git a/NEWS b/NEWS index 03d0570..753ee18 100644 --- a/NEWS +++ b/NEWS @@ -17,7 +17,7 @@ Version 2.20 16712, 16713, 16714, 16731, 16739, 16740, 16743, 16754, 16758, 16759, 16760, 16770, 16786, 16789, 16791, 16799, 16800, 16815, 16823, 16824, 16831, 16838, 16849, 16854, 16876, 16877, 16885, 16888, 16890, 16912, - 16916, 16917, 16922, 16927, 16928, 16932, 16943, 16958, 16966. + 16916, 16917, 16922, 16927, 16928, 16932, 16943, 16958, 16966, 16967. * The minimum Linux kernel version that this version of the GNU C Library can be used with is 2.6.32. diff --git a/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h b/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h index bc33487..c9751f2 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h @@ -43,7 +43,7 @@ struct sigaction __sigset_t sa_mask; /* Special flags. */ - unsigned int sa_flags; + int sa_flags; }; /* Bits in `sa_flags'. */