From patchwork Wed Feb 8 01:49:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Riku Voipio X-Patchwork-Id: 6703 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id E10FC23ECA for ; Wed, 8 Feb 2012 01:49:32 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 989D1A185A8 for ; Wed, 8 Feb 2012 01:49:32 +0000 (UTC) Received: by iabz7 with SMTP id z7so140429iab.11 for ; Tue, 07 Feb 2012 17:49:32 -0800 (PST) Received: by 10.50.153.133 with SMTP id vg5mr19468375igb.8.1328665772091; Tue, 07 Feb 2012 17:49:32 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.169.210 with SMTP id a18cs625ibz; Tue, 7 Feb 2012 17:49:31 -0800 (PST) Received: by 10.229.137.144 with SMTP id w16mr10474566qct.8.1328665771007; Tue, 07 Feb 2012 17:49:31 -0800 (PST) Received: from afflict.kos.to (afflict.kos.to. [92.243.29.197]) by mx.google.com with ESMTPS id c9si369843qao.30.2012.02.07.17.49.29 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 07 Feb 2012 17:49:30 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of nchip@afflict.kos.to designates 92.243.29.197 as permitted sender) client-ip=92.243.29.197; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of nchip@afflict.kos.to designates 92.243.29.197 as permitted sender) smtp.mail=nchip@afflict.kos.to Received: by afflict.kos.to (Postfix, from userid 1000) id D02712652E; Wed, 8 Feb 2012 01:49:28 +0000 (UTC) Date: Wed, 8 Feb 2012 03:49:28 +0200 From: Riku Voipio To: patches@linaro.org Subject: [PATCH 01/19] linux-user: stack_base is now mandatory on all targets Message-ID: <4f31d4aa.8965e00a.6a38.621cSMTPIN_ADDED@mx.google.com> References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-message-flag: Warning: message not sent with a DRM-Certified client User-Agent: Mutt/1.5.18 (2008-05-17) X-Gm-Message-State: ALoCoQkACbrKhbjz7/W/Cqx1ccgHFVd5gfZKwGOMU1+6tlACZO0g1e6T/Frr1Fw+WEb9MVek5FAT Signed-off-by: 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;