From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Tue, 17 Oct 2006 17:37:38 -0400 From: "Russ Cox" To: "Fans of the OS Plan 9 from Bell Labs" <9fans@cse.psu.edu> Subject: Re: [9fans] plan9port: threadid() etc. In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Topicbox-Message-UUID: cb6d7a68-ead1-11e9-9d60-3106f5b1d025 > Have the thread functions changed as I can't > find threadid() and threadpid() in plan9/include/thread.h. If you are talking about Plan 9: They still exist. I just checked. If you are talking about the port to Unix: Threadid exists. Threadpid does not, because it does not make sense (multiple procs might share the same pid, so using the pid to identify a proc is a road to disaster). Russ