Re: [DOTNET-ROTOR] GetThread() function

2004-06-22 Thread Barry Bond
What platform are you running on? FreeBSD? Barry -Original Message- From: Discussion of the Rotor Shared Source CLI implementation [mailto:[EMAIL PROTECTED] On Behalf Of Archana Sent: Tuesday, June 22, 2004 7:58 AM To: [EMAIL PROTECTED] Subject: [DOTNET-ROTOR] GetThread() function Hi,

Re: [DOTNET-ROTOR] GetThread() function

2004-06-22 Thread Jan Kotas
GetThread() returns non-NULL only if SetupThread() was called on the thread. If you need GetThread() to return non-NULL, you need to call SetupThread() at least once on the thread. GetThread is not a function. It is a pointer to a function. It is defined in threads.h / threads.cpp. It points to

Re: [DOTNET-ROTOR] GetThread() function

2004-06-22 Thread Archana
yes, Free BSD On Tue, 22 Jun 2004, Barry Bond wrote: What platform are you running on? FreeBSD? Barry -Original Message- From: Discussion of the Rotor Shared Source CLI implementation [mailto:[EMAIL PROTECTED] On Behalf Of Archana Sent: Tuesday, June 22, 2004 7:58 AM To: [EMAIL

Re: [DOTNET-ROTOR] GetThread() function

2004-06-22 Thread Archana
Hi, i tried calling SetupThread() after CreateThread(), but the problem still persists On Tue, 22 Jun 2004, Jan Kotas wrote: GetThread() returns non-NULL only if SetupThread() was called on the thread. If you need GetThread() to return non-NULL, you need to call SetupThread() at least once