From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: async Gnus Date: Wed, 26 Jan 2022 15:10:23 +0200 Message-ID: <83ee4uhccg.fsf@gnu.org> References: <87a6flqddp.fsf@elite.giraud> <87fspbzpu5.fsf@ericabrahamsen.net> <87wnimn760.fsf@elite.giraud> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20016"; mail-complaints-to="usenet@ciao.gmane.io" Cc: eric@ericabrahamsen.net, emacs-devel@gnu.org To: Manuel Giraud Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Jan 26 14:14:32 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nCi88-0004y6-2U for ged-emacs-devel@m.gmane-mx.org; Wed, 26 Jan 2022 14:14:32 +0100 Original-Received: from localhost ([::1]:46824 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nCi86-0000wh-Cv for ged-emacs-devel@m.gmane-mx.org; Wed, 26 Jan 2022 08:14:30 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:51724) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nCi4P-0007Yg-0s for emacs-devel@gnu.org; Wed, 26 Jan 2022 08:10:41 -0500 Original-Received: from [2001:470:142:3::e] (port=58394 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nCi4O-0001yy-0C; Wed, 26 Jan 2022 08:10:40 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=WA4Mz3CY3/oPcY1Td5MuqBks7c4rSPpnSSrBA0tMQHI=; b=oEcIpWTSDTlN AKlPPUwUKP/RiHySUsL/sMIeMbi4tJKdzVOnTqzngYNBHweCa/FVrWBgdSQkEe5PfKNjzLiQFn2on hjue6bohyP1CRzCckmQUY6YMSLn2u5y8gHRL38qLQn/2BjqPXSuD5YzTq3e+PdKrad3IKIEAnDjTL xYCeOb8XyTMAIRcXAMdp35XuGtd3Z1IgGySZXRJly3m7WRAhNG/dg3b3mDDhGpcknDKaig0JZzsaC X83B3yVTZxkPTWieO0FObygj86Zmv4Y/qoIcubX7NiGdgdJpzafYnxUyUbX6uEiyoGJ83sRyqIAcW 1LnszzaAUooZdzUIq6a2xQ==; Original-Received: from [87.69.77.57] (port=4156 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nCi4E-0000Eb-7v; Wed, 26 Jan 2022 08:10:39 -0500 In-Reply-To: <87wnimn760.fsf@elite.giraud> (message from Manuel Giraud on Wed, 26 Jan 2022 11:05:43 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:285421 Archived-At: > From: Manuel Giraud > Date: Wed, 26 Jan 2022 11:05:43 +0100 > Cc: emacs-devel@gnu.org > > I'm suprprise: I thought that `make-thread' create a proper system > thread. It does. But we only let a single thread at a time to run the Lisp interpreter. So if your thread runs a lot of Lisp, it will preempt the main thread, and that means unresponsive Emacs.