From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <SRS0=LTcT=U5=paulmck-ThinkPad-P17-Gen-1.home=paulmck@kernel.org>
X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org
X-Spam-Level: 
X-Spam-Status: No, score=-6.2 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED,
	DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI,SPF_HELO_NONE,
	SPF_PASS autolearn=ham autolearn_force=no version=3.4.6
Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75])
	by gnuweeb.org (Postfix) with ESMTPS id 41E6D7E408
	for <gwml@vger.gnuweeb.org>; Tue, 19 Apr 2022 00:42:33 +0000 (UTC)
Authentication-Results: gnuweeb.org;
	dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=uxclmqW3;
	dkim-atps=neutral
Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by ams.source.kernel.org (Postfix) with ESMTPS id 79F07B8117D;
	Tue, 19 Apr 2022 00:42:31 +0000 (UTC)
Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7F4F9C341C5;
	Tue, 19 Apr 2022 00:42:28 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org;
	s=k20201202; t=1650328948;
	bh=epS+0Vm2DucSaF80BJUTQiv8VtGW/lZvv9umv8iDYPo=;
	h=From:To:Cc:Subject:Date:In-Reply-To:References:From;
	b=uxclmqW3Oxn4Y1hZmxPQCAEQste0+e+RoQq/WTGAQElKKck1/4Bis/vTV4eRLxV8P
	 xE4Znw9Zi8c+JppwKYvxuotYjJmUpEgKSTNyBEbUyjskiUHfgQqiBLNr8PLTtXt/lO
	 J1gd4y3uCJzsDtzd8lDIm1e6jXTZgkwhUVFX78appaT5m3wADrvsetruVYX9tQ2uQl
	 AbE6uVe9m+KOyCi+DEjFS2YZVEMr/MjyNr2kZY2WhLqp75go0uHxe3I125cc96HrO6
	 qRAwO7gS02LQ/Y5igCKTzY58pRJyFz3viMC4zAGxO4K+IRLKyl02ZN68fjWQKHIp+k
	 6qovEiV3+fAtQ==
Received: by paulmck-ThinkPad-P17-Gen-1.home (Postfix, from userid 1000)
	id 5CEAC5C3236; Mon, 18 Apr 2022 17:42:27 -0700 (PDT)
From: "Paul E. McKenney" <paulmck@kernel.org>
To: linux-kernel@vger.kernel.org
Cc: gwml@vger.gnuweeb.org,
	kernel-team@fb.com,
	w@lwt.eu,
	Willy Tarreau <w@1wt.eu>,
	"Paul E . McKenney" <paulmck@kernel.org>
Subject: [PATCH nolibc 47/61] tools/nolibc/sys: add syscall definition for getppid()
Date: Mon, 18 Apr 2022 17:42:11 -0700
Message-Id: <20220419004225.3952530-47-paulmck@kernel.org>
X-Mailer: git-send-email 2.31.1.189.g2e36527f23
In-Reply-To: <20220419004219.GA3952301@paulmck-ThinkPad-P17-Gen-1>
References: <20220419004219.GA3952301@paulmck-ThinkPad-P17-Gen-1>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
List-Id: <gwml.vger.gnuweeb.org>

From: Willy Tarreau <w@1wt.eu>

This is essentially for completeness as it's not the most often used
in regtests.

Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
---
 tools/include/nolibc/sys.h | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/tools/include/nolibc/sys.h b/tools/include/nolibc/sys.h
index 28437863c63f..4d4308d5d111 100644
--- a/tools/include/nolibc/sys.h
+++ b/tools/include/nolibc/sys.h
@@ -464,6 +464,23 @@ pid_t getpid(void)
 }
 
 
+/*
+ * pid_t getppid(void);
+ */
+
+static __attribute__((unused))
+pid_t sys_getppid(void)
+{
+	return my_syscall0(__NR_getppid);
+}
+
+static __attribute__((unused))
+pid_t getppid(void)
+{
+	return sys_getppid();
+}
+
+
 /*
  * pid_t gettid(void);
  */
-- 
2.31.1.189.g2e36527f23