From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: x-display-pixel-width/height inconsistency Date: Thu, 09 May 2013 17:28:47 -0400 Message-ID: References: <831ub767wf.fsf@gnu.org> <83mwtu4p7c.fsf@gnu.org> <83vc8h313t.fsf@gnu.org> <5073D6B8-95E4-4012-AA74-106F428379DC@swipnet.se> <8BD4B041-5A3F-4D7C-AFD3-E997E194AA9D@swipnet.se> <02B98FCD-71DB-47EC-B58B-41A2539FF61A@swipnet.se> <83vc6tcqss.fsf@gnu.org> <83haibdipo.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1368134939 29000 80.91.229.3 (9 May 2013 21:28:59 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 9 May 2013 21:28:59 +0000 (UTC) Cc: YAMAMOTO Mitsuharu , emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 09 23:28:58 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UaYOW-00039r-0q for ged-emacs-devel@m.gmane.org; Thu, 09 May 2013 23:28:56 +0200 Original-Received: from localhost ([::1]:47317 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UaYOV-0005me-L9 for ged-emacs-devel@m.gmane.org; Thu, 09 May 2013 17:28:55 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:38076) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UaYOQ-0005mV-SX for emacs-devel@gnu.org; Thu, 09 May 2013 17:28:53 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UaYOP-0003j9-HS for emacs-devel@gnu.org; Thu, 09 May 2013 17:28:50 -0400 Original-Received: from chene.dit.umontreal.ca ([132.204.246.20]:42198) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UaYOP-0003j4-Cc; Thu, 09 May 2013 17:28:49 -0400 Original-Received: from faina.iro.umontreal.ca (lechon.iro.umontreal.ca [132.204.27.242]) by chene.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id r49LSl1w028501; Thu, 9 May 2013 17:28:47 -0400 Original-Received: by faina.iro.umontreal.ca (Postfix, from userid 20848) id 3E4CCB40D8; Thu, 9 May 2013 17:28:47 -0400 (EDT) In-Reply-To: <83haibdipo.fsf@gnu.org> (Eli Zaretskii's message of "Thu, 09 May 2013 23:03:15 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Level: X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0.2 X-NAI-Spam-Rules: 2 Rules triggered GEN_SPAM_FEATRE=0.2, RV4574=0 X-NAI-Spam-Version: 2.3.0.9362 : core <4574> : streams <957512> : uri <1415946> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.20 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:159457 Archived-At: > It makes me nervous to have consing inside a Win32 API callback. Are The cons-allocator is not thread-safe, so Fcons should only be called from the main thread, and not from signal handlers either. Stefan