From nobody Mon Apr 29 12:16:23 2024 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (208.118.235.17 [208.118.235.17]) by mx.zohomail.com with SMTPS id 1510273889688450.81407711361976; Thu, 9 Nov 2017 16:31:29 -0800 (PST) Received: from localhost ([::1]:39605 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eCxDt-0003MD-U2 for importer@patchew.org; Thu, 09 Nov 2017 19:31:05 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42596) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eCxD8-00031h-N0 for qemu-devel@nongnu.org; Thu, 09 Nov 2017 19:30:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eCxD5-0005Eg-Jr for qemu-devel@nongnu.org; Thu, 09 Nov 2017 19:30:18 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:41931) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eCxD5-0005Ay-7Z for qemu-devel@nongnu.org; Thu, 09 Nov 2017 19:30:15 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 75C9920C6D; Thu, 9 Nov 2017 19:30:12 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute4.internal (MEProxy); Thu, 09 Nov 2017 19:30:12 -0500 Received: from localhost (flamenco.cs.columbia.edu [128.59.20.216]) by mail.messagingengine.com (Postfix) with ESMTPA id 3527624136; Thu, 9 Nov 2017 19:30:12 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=braap.org; h=cc :date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=mesmtp; bh=kfk4qVL/nPvot8eOo83pPald8E1Ezn7QOeUYEJ xetFQ=; b=m8b5ssJSZA3pcbjRTH2KyWjknHp6W8SYFJndy7gLXJKY/DXE8na1Tp vWuKH/WNrGzn2lalLvsEK1vZ4NK7Rt5wxuyOfIUmhIvy+GuGemtUZdbfXiemqiPE Fut4KmVxEld69dV9PQtdHbLkTxgc+MdCUy9cckRAqAriqiV/2WSzk= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=kfk4qVL/nPvot8eOo 83pPald8E1Ezn7QOeUYEJxetFQ=; b=r3gTzaBuvrPEG8OCNNawbg11zyHOMX24i aYv/sZ04ODI2I+P0zmGkyiXSJ/MqFCknc/U/jM805r24p3thrZs8VP+MxZe85QiN dkEavGcACHy+oMPXeN1uHA6NTTnIF5zsvi/LzFp1KI+UyY2NrTcn1NWN9jK2gyFN mnTePx4VgBxrKuvPrPRg6wKwcoWvUOAvJd8HiLTFaRhst0sgo8tF074lcHmSNHp1 F2/CmfEK0nXO9u1fnMPUXL38v9TuJ2LrXmpQrbe07qltYuZmaXdbdF0oF7wUS2Qb f++FxojnvqdZp1kf6zvKbVisC7KWcmhQyQT3kwRswqulxx4TBDB8w== X-ME-Sender: From: "Emilio G. Cota" To: qemu-devel@nongnu.org Date: Thu, 9 Nov 2017 19:30:11 -0500 Message-Id: <1510273811-13419-1-git-send-email-cota@braap.org> X-Mailer: git-send-email 2.7.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 66.111.4.28 Subject: [Qemu-devel] [PATCH] thread-posix: fix qemu_rec_mutex_trylock macro X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Paolo Bonzini Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_6 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" We never noticed because it has no users. Signed-off-by: Emilio G. Cota --- include/qemu/thread-posix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/qemu/thread-posix.h b/include/qemu/thread-posix.h index f4296d3..f3f47e4 100644 --- a/include/qemu/thread-posix.h +++ b/include/qemu/thread-posix.h @@ -7,7 +7,7 @@ typedef QemuMutex QemuRecMutex; #define qemu_rec_mutex_destroy qemu_mutex_destroy #define qemu_rec_mutex_lock qemu_mutex_lock -#define qemu_rec_mutex_try_lock qemu_mutex_try_lock +#define qemu_rec_mutex_trylock qemu_mutex_trylock #define qemu_rec_mutex_unlock qemu_mutex_unlock =20 struct QemuMutex { --=20 2.7.4