9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Gregory Pavelcak <g.pavelcak@comcast.net>
To: 9fans@cse.psu.edu
Subject: [9fans] Curious about faces and showmail
Date: Wed,  3 Oct 2007 11:55:08 -0400	[thread overview]
Message-ID: <fe9690e056e532a91a5ab387af83f242@comcast.net> (raw)

This morning I had 9 or 10 emails showing in faces, and
I decided it would be nice if I could open all of them with
a single click. Based on the existing code in main.c and
some reasonable guesses, I chnged button 2 to this:

	case 2:
		scroll(2, p);
		lockdisplay(display);
		for(i=0; i<nfaces; i++){
			showmail(faces[i]);
			sleep(250);
		}
		unlockdisplay(display);
		break;

Turns out this had kind of unpredictable behavior. In the
times I tried it 3-5 emails would open, but I couldn't really
predict which ones it would be. Just on a hunch, I added
sleep(250) under showmail() in the for() loop, and so far it
works. I was just wondering why showmail() needs that
delay and if such a need is common. I did a quick grep for
sleep() in sources, and, while it shows up, it doesn't seem
especially common. How does one know when one needs it?

Greg


             reply	other threads:[~2007-10-03 15:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-10-03 15:55 Gregory Pavelcak [this message]
2007-10-03 20:36 ` Russ Cox
2007-10-03 21:55   ` erik quanstrom
2007-10-04  0:33   ` Gregory Pavelcak

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=fe9690e056e532a91a5ab387af83f242@comcast.net \
    --to=g.pavelcak@comcast.net \
    --cc=9fans@cse.psu.edu \
    /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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).