From patchwork Tue Jan 26 11:30:06 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 8120631 Return-Path: X-Original-To: patchwork-qemu-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 72555BEEE5 for ; Tue, 26 Jan 2016 11:30:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E33A22026C for ; Tue, 26 Jan 2016 11:30:39 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 444E62021F for ; Tue, 26 Jan 2016 11:30:39 +0000 (UTC) Received: from localhost ([::1]:43224 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO1pW-0008U1-Lx for patchwork-qemu-devel@patchwork.kernel.org; Tue, 26 Jan 2016 06:30:38 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55823) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO1pA-0008Ca-DD for qemu-devel@nongnu.org; Tue, 26 Jan 2016 06:30:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aO1p9-00027h-GT for qemu-devel@nongnu.org; Tue, 26 Jan 2016 06:30:16 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:59603) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO1p9-00022D-A7 for qemu-devel@nongnu.org; Tue, 26 Jan 2016 06:30:15 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1aO1p0-0008W6-Tk; Tue, 26 Jan 2016 11:30:06 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Date: Tue, 26 Jan 2016 11:30:06 +0000 Message-Id: <1453807806-32698-5-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1453807806-32698-1-git-send-email-peter.maydell@linaro.org> References: <1453807806-32698-1-git-send-email-peter.maydell@linaro.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 2001:8b0:1d0::1 Cc: Aurelien Jarno , patches@linaro.org Subject: [Qemu-devel] [PATCH 4/4] osdep.h: Remove int_fast*_t Solaris compatibility code 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+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP We now do not use the int_fast*_t types anywhere in QEMU, so we can remove the compatibility definitions we were providing for the benefit of ancient Solaris versions. Signed-off-by: Peter Maydell --- include/qemu/osdep.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h index 59a7f8d..cad78ae 100644 --- a/include/qemu/osdep.h +++ b/include/qemu/osdep.h @@ -73,13 +73,6 @@ #include "qapi/error.h" -#if defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10 -/* [u]int_fast*_t not in */ -typedef unsigned char uint_fast8_t; -typedef unsigned int uint_fast16_t; -typedef signed int int_fast16_t; -#endif - #ifndef O_LARGEFILE #define O_LARGEFILE 0 #endif