From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 84B7E1F405 for ; Mon, 29 Jan 2024 21:27:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1706563675; bh=dloFuJtHeTYVVk0t2Yq7xyTk1uBNQemsrIYNy0NXhFA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=gg7SaeZ099A96tFjGXs9BSVTNl4P0xyBAAw5et59CsssQReN8EozPXplyV1Zao8vK kv5+XfwWclKZAEivPopE0L/OWRlZvfQRSs6COJNZS1gpypUuroszvHxzINE8y9vthY lfHMY+ctHOvf4EYBaTSAAS87+LEXMr8r4DlPpo80= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 0/2] pure Perl sendmsg/recvmsg on *BSD Date: Mon, 29 Jan 2024 21:23:17 +0000 Message-ID: <20240129212319.98910-1-e@80x24.org> In-Reply-To: <20231128145628.1455176-3-e@80x24.org> References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: I was wrong about the `syscall' Perl function being unusable on *BSD. It turns out only the symbol names (e.g. from syscall.ph) are unusable, but using the numbers is fine. Eric Wong (2): syscall: update formatting to match our codebase syscall: use pure Perl sendmsg/recvmsg on *BSD devel/sysdefs-list | 9 +- lib/PublicInbox/Syscall.pm | 527 +++++++++++++++++++------------------ t/cmd_ipc.t | 9 +- 3 files changed, 286 insertions(+), 259 deletions(-)