all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Cc: Stefan Monnier <monnier@iro.umontreal.ca>, emacs-devel@gnu.org
Subject: Re: why "in_sighandler"?
Date: Mon, 21 Aug 2006 09:08:54 +0900	[thread overview]
Message-ID: <wlveonymp5.wl%mituharu@math.s.chiba-u.ac.jp> (raw)
In-Reply-To: <44E88FCA.5050705@swipnet.se>

>>>>> On Sun, 20 Aug 2006 18:37:30 +0200, "Jan D." <jan.h.d@swipnet.se> said:

> I needed a variable that was only set when the signal handler is
> running.

I've got no response from you to my last message (*1) in the related
thread.  So I'm not sure if you are for or against my suggestion about
undoing `in_sighandler'-related changes and just changing the order of
lock/unlock and BLOCK_INPUT/UNBLOCK_INPUT in the previous version of
BLOCK_INPUT_ALLOC/UNBLOCK_INPUT_ALLOC as follows.

#define BLOCK_INPUT_ALLOC                       \
  do                                            \
    {                                           \
      if (pthread_self () == main_thread)       \
        BLOCK_INPUT;                            \
      pthread_mutex_lock (&alloc_mutex);        \
    }                                           \
  while (0)
#define UNBLOCK_INPUT_ALLOC                     \
  do                                            \
    {                                           \
      pthread_mutex_unlock (&alloc_mutex);      \
      if (pthread_self () == main_thread)       \
        UNBLOCK_INPUT;                          \
    }                                           \
  while (0)

(*1) http://lists.gnu.org/archive/html/emacs-pretest-bug/2006-08/msg00161.html

				     YAMAMOTO Mitsuharu
				mituharu@math.s.chiba-u.ac.jp

  parent reply	other threads:[~2006-08-21  0:08 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-20  6:51 why "in_sighandler"? Stefan Monnier
2006-08-20 16:37 ` Jan D.
2006-08-20 18:22   ` Stefan Monnier
2006-08-21  0:08   ` YAMAMOTO Mitsuharu [this message]
2006-08-21  6:18     ` Jan Djärv
2006-08-21  6:44       ` YAMAMOTO Mitsuharu
2006-08-21  7:19         ` Jan Djärv
2006-08-21  8:13           ` YAMAMOTO Mitsuharu
2006-08-21  8:46             ` Jan Djärv
2006-08-21  8:58               ` YAMAMOTO Mitsuharu
2006-08-21 11:32                 ` Jan Djärv
2006-08-22  0:22                   ` YAMAMOTO Mitsuharu
2006-08-22  6:38                     ` Jan Djärv
2006-08-22  7:39                       ` YAMAMOTO Mitsuharu
2006-08-22  8:23                         ` Jan Djärv
2006-08-22  8:34                           ` YAMAMOTO Mitsuharu
2006-08-22 18:00                             ` Jan Djärv
2006-08-22  9:43                           ` Andreas Schwab
2006-08-21 11:13   ` Richard Stallman
2006-08-21 12:55     ` Jan Djärv

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=wlveonymp5.wl%mituharu@math.s.chiba-u.ac.jp \
    --to=mituharu@math.s.chiba-u.ac.jp \
    --cc=emacs-devel@gnu.org \
    --cc=monnier@iro.umontreal.ca \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.