all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Michael Albinus <michael.albinus@gmx.de>
To: "Christopher Carpenter" <mordocai@mordocai.net>
Cc: 20280@debbugs.gnu.org
Subject: bug#20280: 25.0.50; Auto revert mode appears to be non-functional
Date: Sun, 19 Apr 2015 16:28:55 +0200	[thread overview]
Message-ID: <87lhho9opk.fsf@gmx.de> (raw)
In-Reply-To: <87r3rsoxdk.fsf@gmx.de> (Michael Albinus's message of "Fri, 10 Apr 2015 16:45:27 +0200")

Michael Albinus <michael.albinus@gmx.de> writes:

> I will dig deeper into this, trying to find out what makes glib to
> refuse to poll. Maybe we have an error bringing glib into the main loop,
> or there is something we miss to configure for glib, or it is simply a
> glib error.

glib's main loop integration in Emacs is implemented by xg_select, a
replacement for pselect in case glib is linked to Emacs. However, in
file process.c:4915, we have the code

--8<---------------cut here---------------start------------->8---
#if defined (HAVE_NS)
          nfds = ns_select
#elif defined (HAVE_GLIB)
	  nfds = xg_select
#else
	  nfds = pselect
#endif
            (max (max_process_desc, max_input_desc) + 1,
             &Available,
             (check_write ? &Writeok : 0),
             NULL, &timeout, NULL);
--8<---------------cut here---------------end--------------->8---

That means, that in your case on OS X ns_select is called, instead of
xg_select.

I have no idea how to solve this properly.

>> Christopher Carpenter

Best regards, Michael.





  reply	other threads:[~2015-04-19 14:28 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-08 17:20 bug#20280: 25.0.50; Auto revert mode appears to be non-functional Christopher Carpenter
2015-04-08 19:06 ` Eli Zaretskii
2015-04-08 19:54   ` Christopher Carpenter
2015-04-08 21:27     ` Michael Albinus
2015-04-08 21:47       ` Christopher Carpenter
2015-04-09 10:36         ` Michael Albinus
2015-04-10  3:22           ` Christopher Carpenter
2015-04-10 14:45             ` Michael Albinus
2015-04-19 14:28               ` Michael Albinus [this message]
2015-08-15 11:17                 ` Michael Albinus

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=87lhho9opk.fsf@gmx.de \
    --to=michael.albinus@gmx.de \
    --cc=20280@debbugs.gnu.org \
    --cc=mordocai@mordocai.net \
    /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.