From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id ADF971F910 for ; Tue, 15 Nov 2022 19:33:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1668540821; bh=8CZEy6gg0G7lZgxpWWG0zxsdb57Y+qXi1JuFTZMx7hw=; h=From:To:Subject:Date:From; b=1n0OSmNXVBoy/IWWSY7mBhk1fzMRe5aZwL3y3a400D0uznUrqVZwBUmU+vd8hVbz1 /Ox2MWs6POkZz/kt3Gugv47bGDwCQeCQ3r9F79CL/q/ZM7jYdzd2l/8hdsFbMiA/U9 maPt8gAi3RPFuRbmZGDdF/L5QPlotF/bQ4Zi9c9Q= From: Eric Wong To: mwrap-perl@80x24.org Subject: [PATCH 0/6] bugfixes, workarounds, and built-in malloc Date: Tue, 15 Nov 2022 19:33:35 +0000 Message-Id: <20221115193341.3948245-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: A bunch of stuff that's been sitting around for a bit Eric Wong (6): test cfree and aligned_alloc aliases Devel::Mwrap::reset is a no-op if `totals' not initialized block signals when spawning URCU-related threads document of kbuf allocation size mwrap-perl: use grep and fix regexp split out mwrap_core.h and use provide our own malloc .gitignore | 1 + MANIFEST | 5 + Mwrap.xs | 798 +----- check.h | 24 + dlmalloc_c.h | 6294 +++++++++++++++++++++++++++++++++++++++++++++ gcc.h | 13 + mwrap_core.h | 751 ++++++ mymalloc.h | 204 ++ script/mwrap-perl | 5 +- t/mwrap.t | 31 + 10 files changed, 7336 insertions(+), 790 deletions(-) create mode 100644 check.h create mode 100644 dlmalloc_c.h create mode 100644 gcc.h create mode 100644 mwrap_core.h create mode 100644 mymalloc.h