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
Log in to post a comment.
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