From patchwork Sat Sep 15 20:24:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 184105 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BDE7F2C0081 for ; Sun, 16 Sep 2012 07:00:25 +1000 (EST) Received: from localhost ([::1]:44579 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TCyvO-0000il-Ij for incoming@patchwork.ozlabs.org; Sat, 15 Sep 2012 16:25:10 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48966) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TCyuZ-00076j-Pv for qemu-devel@nongnu.org; Sat, 15 Sep 2012 16:24:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TCyuY-0004gh-K9 for qemu-devel@nongnu.org; Sat, 15 Sep 2012 16:24:19 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:50001) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TCyuY-0004g1-E4 for qemu-devel@nongnu.org; Sat, 15 Sep 2012 16:24:18 -0400 Received: by mail-pb0-f45.google.com with SMTP id rp12so7600280pbb.4 for ; Sat, 15 Sep 2012 13:24:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=LPkysftUEzoEc8UVZfm12qxh79D+3fdxhTxMnj7clfE=; b=UkDEn7WKxlJEt7j4sp1+oEDBtu5eoA6gfc6+TRlZ/aUHawRHieSXKdUeuNrDFEfFmh XvOJy7TRZnQsOB8obSrgYDk3cdJRuJojLxjfHTMm+wSXkz347zHTlCFzoP4L9qVCWk/K fR4Pe1oTKh3YPZS5Js2IfYoRFCM+6vNQzrDsjnpK72LeyL6LgvRAi/vFZAz/wooBOPvW gaBZHCkAwIaMJ7uagjZ9w7YbUDCxdKohjSMNk9utKlPBskuhXRqhHzG918FXzRClKaUd IoBxnwGKSHTxrebhXTMslTMLAwrwUlyguVAGv7/i790duK57kS4V9OZQ70pFiPoQheY+ By0g== Received: by 10.68.200.162 with SMTP id jt2mr11954909pbc.54.1347740658129; Sat, 15 Sep 2012 13:24:18 -0700 (PDT) Received: from anchor.twiddle.home ([173.160.232.49]) by mx.google.com with ESMTPS id lb1sm3553987pbc.47.2012.09.15.13.24.17 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 15 Sep 2012 13:24:17 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Sat, 15 Sep 2012 13:24:06 -0700 Message-Id: <1347740649-28646-4-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.11.4 In-Reply-To: <1347740649-28646-1-git-send-email-rth@twiddle.net> References: <1347740649-28646-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.45 Cc: Riku Voipio Subject: [Qemu-devel] [PATCH 3/6] alpha-linux-user: Fix sigaltstack structure definition X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Richard Henderson --- linux-user/alpha/target_signal.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/linux-user/alpha/target_signal.h b/linux-user/alpha/target_signal.h index 94f15f6..d3822da 100644 --- a/linux-user/alpha/target_signal.h +++ b/linux-user/alpha/target_signal.h @@ -6,9 +6,10 @@ /* this struct defines a stack used during syscall handling */ typedef struct target_sigaltstack { - abi_ulong ss_sp; - abi_long ss_flags; - abi_ulong ss_size; + abi_ulong ss_sp; + int32_t ss_flags; + int32_t dummy; + abi_ulong ss_size; } target_stack_t;