From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd36.google.com (mail-io1-xd36.google.com [IPv6:2607:f8b0:4864:20::d36]) by sourceware.org (Postfix) with ESMTPS id 41D513858D37 for ; Wed, 16 Feb 2022 09:49:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 41D513858D37 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-io1-xd36.google.com with SMTP id h5so1613580ioj.3 for ; Wed, 16 Feb 2022 01:49:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=aqFML0J+qEXGOXEnViGxng/wzTIGXg8anlZAO3NmJrI=; b=jJgBlDFcILKCuLl8gCpUL2jdCyxqsGq6xIHdlW4G0YdzUPKzr7wspUlXZdmoBziC/d +AOO+6qJpUqTQDrWmDj5oavdi8Oc4gYRvwwHXFi7IJXf7x2pACAjkoPIM+I36j1YJS4g F6vkIiCQdr6yo3sUHpGxZKOissOpx3ZKPgvAU0b5sCZRKoNcG1ON4Ywe6RXiFpZS2Cq/ pDz7mXYfAKXjsv6gUwjgmE51rG7yMhnelnr2qemujxZqtSbLv4b/zBY9OIxboieO1jGS 1YfwWdXrTsNZoJ/LZSt5mfC2GQA2yz/ZgDc68GRNmgIzF5ODOFgAmnrkz30aCCDEshdJ hs5g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=aqFML0J+qEXGOXEnViGxng/wzTIGXg8anlZAO3NmJrI=; b=LTUt6siL2ZN3E0tVxafH+FGsXHOFs0CD1OFO2xtYLVtQlk/IDTFS7OioalEmqs4atA 35IfJ6XrtjKjKY5d9/ZN/Fz8dZh1Aozoi5aS569lUQceyeuViOqm6nnxBMNcZuU1kKUV QcjEa6k2e4LWqYZieCV6r9ZQSiqVgrcc71xAdt7vM2yXyP/tQsUFXEF9oAPgo0l3Bwxg iVbpfJQAZ6SpN0iV4g5reJ1X7GiYjqSlZOeNgIk/NzjWaqpLflEsi4ImkZdK6WJjc48s HZfUXo+oW4AivDS61mHZQrqaV1QOoa+IE6T2azJwhDCuu8BU8HdIGpbDZH0+3zxfj9r6 5ogw== X-Gm-Message-State: AOAM533+ziXRraIyq2uj5gwnTZCeOVY+efFVVqlnFRAyr1WDXODB1N9S uwQ9qqXu9TA6jzDW2C4O2TsU12JYYjPy8PxE6xfgbrcxz5DUig== X-Google-Smtp-Source: ABdhPJzP3WpEsvlEYDNcG73snOmwPCQdwYhLXhxFte5PhsZ85UXion7hKo16sqxsM9IitGLeKBIrYAWzwTBoMUxySlI= X-Received: by 2002:a05:6602:2ac7:b0:612:232c:b113 with SMTP id m7-20020a0566022ac700b00612232cb113mr1264013iov.143.1645004987348; Wed, 16 Feb 2022 01:49:47 -0800 (PST) MIME-Version: 1.0 From: Orgad Shaneh Date: Wed, 16 Feb 2022 11:49:36 +0200 Message-ID: Subject: Console output hangs in the middle of a line To: cygwin@cygwin.com Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Feb 2022 09:49:49 -0000 Hi, I'm using cygwin runtime 3.3.4-2. CYGWIN env variable is empty. Running in Windows Terminal. When I run git clean -dfx on a Node.JS project, which has huge node_modules directories, that produces a lot of output in high rate, the console seems to freeze for very long in the middle of a line, and continues after a while. If I get it correctly, the writes are done in 4K chunks, freezing for a few seconds after each chunk. The output looks more or less like this: Removing common/auth.js Removing common/auth.js.map ... Removing common/bar.js Removing common/bar.js.map Remo ving common/foo.js (continued on the same line) Removing common/foo.js.map ... etc. No output was lost. Is this a known issue? - Orgad