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,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF 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 0C1F11F47C; Sun, 8 Jan 2023 05:18:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1673155118; bh=DmGYfe0jjVRbOzmT5EnL9ep+fbuo/kO4ge5E9ycvmEo=; h=Date:From:To:Subject:From; b=ujsy72loTBFDGOo/+LTWE/Bc47mWeHsorZSLY4/yVW5FDmbHJWY2V3JbORIE2TFom iWxrC64K4RJA1Eqrsb27oqR0UaK00vqWp7CGA3UILM4JWeAlOhVDPFyOeBPS65ZaoD K5eN7iIuQPBfzDp1hDrvgTBBDRACKykiARV6N9Lw= Date: Sun, 8 Jan 2023 05:18:37 +0000 From: Eric Wong To: mwrap-public@80x24.org Subject: mwrap-perl changes merged Message-ID: <20230108051837.M995361@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: pushed to https://80x24.org/mwrap.git commit b5ab9be6686aa778a4cfd7622c598736b9c42321 parent 4356beb8237a92b3 (picohttpparser: fix __SSE_4_2__ CPP check, 2023-01-07) parent 2c25edb01139365f (undefine Mwrap::SourceLocation.allocate, 2023-01-07) Date: Sun Jan 8 05:03:26 2023 +0000 Merge changes from the Perl side This contains many changes from https://80x24.org/mwrap-perl.git * Built-in RCU-friendly version of dlmalloc, no more fragile dlsym(3m) resolution of malloc-family functions in the constructor * Allocations are now backed by O_TMPFILE on $TMPDIR on modern Linux. Since mwrap increases memory usage greatly and I needed to use it on a system where I needed more VM space but lacked the ability to add swap. * Configurable C backtrace level via MWRAP=bt:$DEPTH where $DEPTH is a non-negative integer. Be careful about increasing it, even a depth of 3-4 can be orders-of-magnitude more expensive in time and space. This can be changed dynamically at runtime via local HTTP (see below). * Embedded per-process local-socket-only HTTP server obsoletes MwrapRack when combined with mwrap-rproxy from the Perl dist (set `MWRAP=socket_dir:/dir/of/sockets') See https://80x24.org/mwrap-perl/20221210015518.272576-4-e@80x24.org/ for more info. It now supports downloading CSV (suitable for importing into sqlite 3.32.0+) * License switched to GPL-3+ to be compatible with GNU binutils since we may take code from addr2line in the future. * libxxhash supported if XXH3_64bits is available.