Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
Message-ID: <20011114212317.56701.qmail@web21002.mail.yahoo.com>
Date: Wed, 14 Nov 2001 13:23:17 -0800 (PST)
From: Evan Pollan <evan_pollan@yahoo.com>
Subject: Re: pthread_create -- no callback?
To: Robert Collins <robert.collins@itdomain.com.au>,
   "Lassi A. Tuura" <lassi.tuura@cern.ch>
Cc: cygwin@cygwin.com
In-Reply-To: <024401c16d49$0f7f0f70$0200a8c0@lifelesswks>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii

> > On linux it returns ESRCH = no such thread.  Your problem is with the
> > thread argument to pthread_join as shown below.
> >
> > Since you are not joining with the thread, the output might disappear...

I'd missed your point earlier!!!  I was calling pthread_join with the address
of the thread rather than the thread itself...

That's all I needed.  My experience is very stale w/ C & C++, but why didn't I
get at least a compilation warning when I passed the reference to the thread,
rather than its value?

I.e.
    pthread_t thread;
     <snip>
    retVal = pthread_join(thread, &threadExitStatus);

*AND*

    pthread_t thread;
     <snip>
    retVal = pthread_join(&thread, &threadExitStatus);

both compile with no warnings or errors (using g++ -W -Wall
-Wno-non-virtual-dtor -Wwrite-strings -Wpointer-arith -Wnested-externs
-Woverloaded-virtual -Wbad-function-cast -ansi -pedantic).


Evan

__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

