From patchwork Mon Nov 4 15:19:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Martin_Li=C5=A1ka?= X-Patchwork-Id: 1189646 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-512463-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="aBb8igy3"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 476pSH6F0cz9sNT for ; Tue, 5 Nov 2019 23:11:59 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :resent-from:resent-to:resent-date:resent-message-id:message-id :in-reply-to:references:from:date:subject:to:mime-version :content-type; q=dns; s=default; b=HchuRKgh9KtzBk1TjJF2jYkZULJkG SHNPGuVM610NN0VN45eT5SO4Z8C3fJBNLzXl5Zj3m/Q/wc80Ke9uvH1W0LAdsdhn qGqyY/Bj7cEpaFOv9kdbLshkaWVH1XuZZYVv8DvuBuljQSadDVb7spJ/YI9+s10M RvybvLesv7iz2A= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :resent-from:resent-to:resent-date:resent-message-id:message-id :in-reply-to:references:from:date:subject:to:mime-version :content-type; s=default; bh=FZiE4m1zH4qkkFD0ti5hnjole+c=; b=aBb 8igy3ZiEyLZcKCmCrIwMQDQTFGBGo0y2RImIoibhejbBYfZ2GodokeZ286WIxYcH 1UOTWtEhnrk7dgoNeVVsS2/DM2g3XoqUNGKSiqvPzDeY6pOOXh0wNM5Widm3jigs 4oHD2mjrVCiau1HeIbCA/WIsyY6/Dyrdj26idBiw= Received: (qmail 35387 invoked by alias); 5 Nov 2019 12:11:40 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 35373 invoked by uid 89); 5 Nov 2019 12:11:40 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-18.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 05 Nov 2019 12:11:39 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 813DBB523 for ; Tue, 5 Nov 2019 12:11:37 +0000 (UTC) Resent-From: =?utf-8?q?Martin_Li=C5=A1ka?= Resent-To: GCC Patches Resent-Date: Tue, 5 Nov 2019 13:11:37 +0100 Resent-Message-ID: <69e820e4-45fa-e5e2-9457-e37b17dbd93f@suse.cz> Message-Id: In-Reply-To: References: From: Martin Liska Date: Mon, 4 Nov 2019 16:19:17 +0100 Subject: [PATCH 2/5] Update Makefile.am. To: gcc-patches@gcc.gnu.org MIME-Version: 1.0 X-IsSubscribed: yes libsanitizer/ChangeLog: 2019-11-05 Martin Liska * tsan/Makefile.am: Rename tsan_interceptors.cpp to tsan_interceptors_posix. * tsan/Makefile.in: Regenerate. --- libsanitizer/tsan/Makefile.am | 2 +- libsanitizer/tsan/Makefile.in | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libsanitizer/tsan/Makefile.am b/libsanitizer/tsan/Makefile.am index 1ca9b68a3c5..5d37abd20de 100644 --- a/libsanitizer/tsan/Makefile.am +++ b/libsanitizer/tsan/Makefile.am @@ -20,7 +20,7 @@ tsan_files = \ tsan_fd.cpp \ tsan_flags.cpp \ tsan_ignoreset.cpp \ - tsan_interceptors.cpp \ + tsan_interceptors_posix.cpp \ tsan_interceptors_mac.cpp \ tsan_interface_ann.cpp \ tsan_interface_atomic.cpp \ diff --git a/libsanitizer/tsan/Makefile.in b/libsanitizer/tsan/Makefile.in index cae00ab45ad..3d1d9565e47 100644 --- a/libsanitizer/tsan/Makefile.in +++ b/libsanitizer/tsan/Makefile.in @@ -146,7 +146,7 @@ LTLIBRARIES = $(toolexeclib_LTLIBRARIES) am__DEPENDENCIES_1 = am__objects_1 = tsan_clock.lo tsan_debugging.lo tsan_external.lo \ tsan_fd.lo tsan_flags.lo tsan_ignoreset.lo \ - tsan_interceptors.lo tsan_interceptors_mac.lo \ + tsan_interceptors_posix.lo tsan_interceptors_mac.lo \ tsan_interface_ann.lo tsan_interface_atomic.lo \ tsan_interface.lo tsan_interface_java.lo tsan_malloc_mac.lo \ tsan_md5.lo tsan_mman.lo tsan_mutex.lo tsan_mutexset.lo \ @@ -421,7 +421,7 @@ tsan_files = \ tsan_fd.cpp \ tsan_flags.cpp \ tsan_ignoreset.cpp \ - tsan_interceptors.cpp \ + tsan_interceptors_posix.cpp \ tsan_interceptors_mac.cpp \ tsan_interface_ann.cpp \ tsan_interface_atomic.cpp \ @@ -585,8 +585,8 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_fd.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_flags.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_ignoreset.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_interceptors.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_interceptors_mac.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_interceptors_posix.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_interface.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_interface_ann.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tsan_interface_atomic.Plo@am__quote@