From patchwork Thu Oct 18 11:31:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Riku Voipio X-Patchwork-Id: 192307 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 2D3752C0093 for ; Thu, 18 Oct 2012 23:05:58 +1100 (EST) Received: from localhost ([::1]:42693 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOoKS-0001h2-AV for incoming@patchwork.ozlabs.org; Thu, 18 Oct 2012 07:31:56 -0400 Received: from eggs.gnu.org ([208.118.235.92]:45971) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOoJr-0008U7-HH for qemu-devel@nongnu.org; Thu, 18 Oct 2012 07:31:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TOoJj-0005W1-9g for qemu-devel@nongnu.org; Thu, 18 Oct 2012 07:31:19 -0400 Received: from afflict.kos.to ([92.243.29.197]:57403) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOoJj-0005Vk-2c for qemu-devel@nongnu.org; Thu, 18 Oct 2012 07:31:11 -0400 Received: by afflict.kos.to (Postfix, from userid 1000) id F38A1264C3; Thu, 18 Oct 2012 13:31:07 +0200 (CEST) From: riku.voipio@linaro.org To: qemu-devel@nongnu.org Date: Thu, 18 Oct 2012 14:31:01 +0300 Message-Id: X-Mailer: git-send-email 1.7.2.5 In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 92.243.29.197 Cc: Richard Henderson Subject: [Qemu-devel] [PATCH 05/11] 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 From: Richard Henderson Signed-off-by: Richard Henderson Signed-off-by: Riku Voipio --- 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;