On Mon, 27 Feb 2006, Gustavo Rios wrote: > I am using OBSD for about 5 years now. I am need to write massive > parallel applications and the traditional approach (fork/threaded app) > is not an alternative due to performance issues. > > I wonder if the event driven approach by http://jcyclone.sf.net is of > use? Any one here using it? Specially with OpenBSD?
man 3 event It does most of what an event-driver application needs, but you would still need to manage your own queues, per-processor workers, etc. -d