Dave Huseby - 2001-07-06

I have an object that inherits from the Thread object.  I am dynamically creating my object and starting the thread like this:

myobj *o = new myobj();
o->Start();

this works fine when I compile my code on my Linux box but on my Win2k machine myobj::Run() is not getting called at all.  any ideas?

Dave