From patchwork Tue Jan 31 09:29:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Riku Voipio X-Patchwork-Id: 138722 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6A0891007D1 for ; Tue, 31 Jan 2012 20:29:59 +1100 (EST) Received: from localhost ([::1]:35833 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsA2G-0004Ly-0h for incoming@patchwork.ozlabs.org; Tue, 31 Jan 2012 04:29:56 -0500 Received: from eggs.gnu.org ([140.186.70.92]:58179) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsA1w-0004Fu-Ic for qemu-devel@nongnu.org; Tue, 31 Jan 2012 04:29:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RsA1q-0002aj-FO for qemu-devel@nongnu.org; Tue, 31 Jan 2012 04:29:36 -0500 Received: from afflict.kos.to ([92.243.29.197]:37225) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsA1q-0002aM-AQ for qemu-devel@nongnu.org; Tue, 31 Jan 2012 04:29:30 -0500 Received: by afflict.kos.to (Postfix, from userid 1000) id 65CBB2652E; Tue, 31 Jan 2012 09:29:28 +0000 (UTC) From: riku.voipio@linaro.org To: qemu-devel@nongnu.org Date: Tue, 31 Jan 2012 11:29:10 +0200 Message-Id: <2fffecf6bd5a3ef625a48efdd4fc8a36ef46e49a.1328001769.git.riku.voipio@linaro.org> X-Mailer: git-send-email 1.7.1 In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 92.243.29.197 Cc: Riku Voipio Subject: [Qemu-devel] [PATCH 01/19] linux-user: stack_base is now mandatory on all targets 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: Riku Voipio --- linux-user/qemu.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/linux-user/qemu.h b/linux-user/qemu.h index 55ad9d8..30e2abd 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -123,10 +123,10 @@ typedef struct TaskState { #endif #if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32) /* Extra fields for semihosted binaries. */ - uint32_t stack_base; uint32_t heap_base; uint32_t heap_limit; #endif + uint32_t stack_base; int used; /* non zero if used */ struct image_info *info; struct linux_binprm *bprm;