From patchwork Wed Nov 3 19:49:10 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?Q?Llu=C3=ADs?= X-Patchwork-Id: 70053 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 2554AB6EF2 for ; Thu, 4 Nov 2010 06:54:21 +1100 (EST) Received: from localhost ([127.0.0.1]:36124 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PDjP2-0004Wp-54 for incoming@patchwork.ozlabs.org; Wed, 03 Nov 2010 15:53:48 -0400 Received: from [140.186.70.92] (port=60059 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PDjKX-0001AP-KL for qemu-devel@nongnu.org; Wed, 03 Nov 2010 15:49:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PDjKV-00044q-EY for qemu-devel@nongnu.org; Wed, 03 Nov 2010 15:49:08 -0400 Received: from mailout-de.gmx.net ([213.165.64.23]:54633 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1PDjKV-00044j-1n for qemu-devel@nongnu.org; Wed, 03 Nov 2010 15:49:07 -0400 Received: (qmail invoked by alias); 03 Nov 2010 19:49:05 -0000 Received: from unknown (EHLO localhost) [84.88.53.92] by mail.gmx.net (mp063) with SMTP; 03 Nov 2010 20:49:05 +0100 X-Authenticated: #12333383 X-Provags-ID: V01U2FsdGVkX19NmB1rBI1NoOH2mF/UPuF8NZ9sKHlnSWm99GUcc3 ry83G5Ia/rNzJg To: qemu-devel@nongnu.org From: =?utf-8?b?TGx1w61z?= Date: Wed, 03 Nov 2010 20:49:10 +0100 Message-ID: <20101103194910.5871.53210.stgit@ginnungagap.bsc.es> In-Reply-To: <20101103194849.5871.90387.stgit@ginnungagap.bsc.es> References: <20101103194849.5871.90387.stgit@ginnungagap.bsc.es> User-Agent: StGit/0.15 MIME-Version: 1.0 X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH v1 3/6] backdoor: declare host-side backdoor helpers X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org These helpers must be implemented by the user on "libbackdoor.a". Signed-off-by: Lluís Vilanova --- backdoor/helper.h | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) create mode 100644 backdoor/helper.h diff --git a/backdoor/helper.h b/backdoor/helper.h new file mode 100644 index 0000000..d3c19d9 --- /dev/null +++ b/backdoor/helper.h @@ -0,0 +1,21 @@ +/* + * Helpers for instruction-based backdoor communication. + * + * Copyright (c) 2010 Lluís Vilanova + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + */ + +DEF_HELPER_1(backdoor_i8, void, i32); +DEF_HELPER_2(backdoor_i8_v32, void, i32, i32);