From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7552 invoked by alias); 1 Sep 2003 04:41:00 -0000 Mailing-List: contact pthreads-win32-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: pthreads-win32-owner@sources.redhat.com Received: (qmail 7540 invoked from network); 1 Sep 2003 04:40:59 -0000 Received: from unknown (HELO serge.ecosm.com) (202.37.218.3) by sources.redhat.com with SMTP; 1 Sep 2003 04:40:59 -0000 Received: (qmail 26373 invoked by uid 503); 1 Sep 2003 04:40:55 -0000 Received: from sue.ecosm.com (HELO moose) (202.37.218.10) by serge.ecosm.com with SMTP; 1 Sep 2003 04:40:55 -0000 Message-ID: <07ea01c37043$43e02a70$2b01a8c0@moose> From: "Will Bryant" To: References: <1062352346.4373.7.camel@william> <3F52CBD0.2070205@ise.canberra.edu.au> Subject: Re: How is pthread_self() implemented? Date: Mon, 01 Sep 2003 04:41:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-SW-Source: 2003/txt/msg00084.txt.bz2 > John Bossom's original design also allows for pre-existing Win32 threads > to use any POSIX routines, and therefore fully interact with POSIX > threads, by creating a one-time-only on-the-fly detached POSIX thread > handle for the Win32 thread. So it is safe to use all pthreads-win32 functions from threads not created using the pthreads interface? I have an application where nearly all of the code only needs to use standard windows threads, but there are a couple of condition variables that I'd like to be able to use...