From patchwork Wed Jan 3 21:01:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 83275 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C9D8A3858038 for ; Wed, 3 Jan 2024 21:01:32 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from sonata.ens-lyon.org (sonata.ens-lyon.org [140.77.166.138]) by sourceware.org (Postfix) with ESMTPS id 3710B3858D38 for ; Wed, 3 Jan 2024 21:01:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 3710B3858D38 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=bounce.ens-lyon.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 3710B3858D38 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=140.77.166.138 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1704315667; cv=none; b=TzvDG9JLFj12WyQjnwj8LunowUmOaYrGnljJnlLlmyypnRjKjwjyZa4wh6S93SCsAmK+FynReBUio/rZer+gHekQ3L2KMVUAJwtsUW1mx0/Spsc6rWOlmSH+CfVA4kJ+VEXCT/jbexMTx7iDo3vv1S0JnZpHeSmLleBfu0qn20E= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1704315667; c=relaxed/simple; bh=0cOD3O8PiLf2HyCdQukfvLydFBoDt6VPEHI087O1o7g=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=oo5wNJZzI7FkuzSOONQmJSOgbF1+irq8bbVxwkoPg1WpGfMp4hdqiaxCqNyUAEcCEVl3b5dzBIzG5CrLMTPWik2wZeJ0Fea7sNIEwJIQLwRA3QDYQnepyD77OddG0U2LNE/jCb/LaQWwP8udQl7fPClgyZLNDPODyhEzl/+EsIU= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from localhost (localhost [127.0.0.1]) by sonata.ens-lyon.org (Postfix) with ESMTP id 4CC36200F3; Wed, 3 Jan 2024 22:01:02 +0100 (CET) Received: from sonata.ens-lyon.org ([127.0.0.1]) by localhost (sonata.ens-lyon.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ejw6i5tNNFtV; Wed, 3 Jan 2024 22:01:02 +0100 (CET) Received: from begin.home (apoitiers-658-1-118-253.w92-162.abo.wanadoo.fr [92.162.65.253]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by sonata.ens-lyon.org (Postfix) with ESMTPSA id 34B59200EE; Wed, 3 Jan 2024 22:01:02 +0100 (CET) Received: from samy by begin.home with local (Exim 4.97) (envelope-from ) id 1rL8MH-00000007jfb-3etN; Wed, 03 Jan 2024 22:01:01 +0100 From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Sergey Bugaev , commit-hurd@gnu.org Subject: [hurd,commited] hurd: Add some missing includes Date: Wed, 3 Jan 2024 22:01:01 +0100 Message-ID: <20240103210101.1843844-1-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-Spam-Status: No, score=-13.7 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, KAM_SHORT, RCVD_IN_DNSWL_LOW, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org From: Sergey Bugaev Signed-off-by: Sergey Bugaev --- hurd/hurdsig.c | 2 +- mach/lowlevellock.h | 1 + sysdeps/mach/hurd/mig-reply.c | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 3deb94f9e4..fe78819302 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -15,6 +15,7 @@ License along with the GNU C Library; if not, see . */ +#include #include #include #include @@ -260,7 +261,6 @@ _hurd_sigstate_actions (struct hurd_sigstate *ss) #include #include /* For __msg_sig_post_reply. */ #include -#include #include diff --git a/mach/lowlevellock.h b/mach/lowlevellock.h index 129a7bd91f..c5bb08795b 100644 --- a/mach/lowlevellock.h +++ b/mach/lowlevellock.h @@ -19,6 +19,7 @@ #ifndef _MACH_LOWLEVELLOCK_H #define _MACH_LOWLEVELLOCK_H 1 +#include #include #include diff --git a/sysdeps/mach/hurd/mig-reply.c b/sysdeps/mach/hurd/mig-reply.c index 57bcd80862..85c3af1333 100644 --- a/sysdeps/mach/hurd/mig-reply.c +++ b/sysdeps/mach/hurd/mig-reply.c @@ -15,6 +15,7 @@ License along with the GNU C Library; if not, see . */ +#include #include #include #include