This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: pthreads works, sorta


----- Original Message -----
From: "Greg Smith" <gsmith@nc.rr.com>
To: "Cygwin General MailList" <cygwin@cygwin.com>
Sent: Tuesday, June 26, 2001 10:04 AM
Subject: pthreads works, sorta


> With Robert Collins' latest patches, the Cygwin pthreads
implementation,
> as far as I can tell, seems functional (Thanks Rob!!).  However, its
> performance, in the words of an old friend of mine, `sucks dead bears'
> (he's a Hokie, which probably explains his phrasing ;-)
>
> My (heavily threaded) application runs approximately 100x slower than
under
> linux and proceeds to the point where the program thrashes because it
is
> calling pthreads functions faster than the pthreads implementation can
> deliver (we're talking _mutex_lock/unlock and _cond_wait/signal here).

Condition variables we can't do much about here, other than trying to
get down to the metal and rewrite em without OS support. I'm not keen to
try that, for what I hope are obvious reasons.

> I realize very well that in a development scenario functionality
should
> come first and performance second.  However, one of our developers is
> insisting on writing his own pthreads implementation for the
application
> (it's not really mine, I'm just a minor developer) on the Win32 side.
> As a programmer, I hate to see dual pathing based on platform in the
code;
> hence this prod (er post).

Please, get your colleague to improve the cygwin pthreads code. That
will let him get his hands dirty, solve his problem, and prevent wastage
:}.

> I also know that Rob is fully aware of the performance problem and
> has ideas he wishes to implement, when he can spare some moments of
his
> valuable time.  However, as of 1.3, our application doesn't run on
Win32
> without kluging the threads implementation (by using a pthreads
implementation
> from ftp://sources.redhat.com/pub/pthreads-win32).  I am anxious to
see
> pthreads `right' on Cygwin.

I cannot read that implementation unfortunately - cygwin1.dll
contributes require copyright assignment. However if someone is
willing/able to give me relatively details english differences between
their mature implementation and the cygwin1.dll one, I'm more than happy
to recode what cygwin's got.

> I am willing to act as guinea pig or to contribute code myself.  Alas,
I am
> a procedural programmer and not an OOPer; although I understand the
concept
> of classes, objects and methods, some of the syntax and methodolgy
eludes
> me.  However, ignorance has never stopped me from jumping in and
getting wet
> before.  I learned a long time ago that when you jump into water where
you
> don't know how deep it is, you don't jump in head first, and not feet
first,
> but butt first (the reader is free to deduce any insights this analogy
> provides, if any ;-)

I don't OOP that well either :]. Give me asm and I'm happy :/.

The first step greg is to use Critical Sections instead of mutex's for
all non-process shared mutex's.

howto do that? Read up on win32 mutex's and win32 critical sections.
Then add a if (pshared) else clause to all the mutex member functions.

/Rob

> Greg
>
> --
> Want to unsubscribe from this list?
> Check out: http://cygwin.com/ml/#unsubscribe-simple
>
>


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]