9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Sape Mullender <sape@plan9.bell-labs.com>
To: 9fans@9fans.net
Cc: 9fans@9fans.net
Subject: Re: [9fans] dial and time out
Date: Thu, 10 Sep 2009 12:07:02 +0200	[thread overview]
Message-ID: <bece46f7a1381ab4878394bf4a673fac@plan9.bell-labs.com> (raw)
In-Reply-To: <e5760b1ec598d2f3d6bec4bf4a892778@smgl.fr.eu.org>

Threads are great for preventing race conditions.  I agree.

Many Plan 9 applications (ria, acme, etc.) use a central proc with lots of
threads doing the real work of manipulating the state of the application.
No locks are required, because the threads explicitly yield by doing
channel io or calling yield().

IO is done by single-threaded procs, almost one per file descriptor.
These IO threads typically run on the lines of:
	void
	ioproc(void *a)
	{
		for(;;){
			read(fd, ...)
			send(channel, ...)
		}
	}
to send what was read to a central-proc's worker thread.

	Sape


> From: lejatorn@gmail.com
> To: 9fans@9fans.net
> Reply-To: 9fans@9fans.net
> Date: Thu Sep 10 11:57:50 CES 2009
> Subject: Re: [9fans] dial and time out
>
> it seemed safer at first if I didn't have to worry about the procs
> preempting each other (and appart from that dial() bottleneck, I don't
> need them to), that's why I started with threads. I was thinking of
> sticking to threads and not using procs until I really do need them. But
> yeah, no real good reason not to switch to procs if that's the best way
> to go in that case.
>
> Mathieu.
>
>
> — 2/



  parent reply	other threads:[~2009-09-10 10:07 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-10  9:32 Mathieu L.
2009-09-10  9:34 ` erik quanstrom
2009-09-10  9:51   ` Mathieu L.
2009-09-10  9:59     ` erik quanstrom
2009-09-10 10:07     ` Sape Mullender [this message]
2009-09-10  9:57 ` Sape Mullender
2009-09-10 11:26   ` Mathieu L.

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=bece46f7a1381ab4878394bf4a673fac@plan9.bell-labs.com \
    --to=sape@plan9.bell-labs.com \
    --cc=9fans@9fans.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.
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).