Dominique Louis schreef: > Hi Tom et all, > When I try a very simple TThread test under Mac OS X ( Intel ) I get > the error "RunError(232)", followed by a execution paused dialog that says > "Procedure: SYSTEM_NOTHREADERROR" > > All I'm doing is... > th := TMyThread.Create( true ); > > Where TMyThread inherits from TThread. > > Is it safe to say that TThreading it NOT currently supported on Mac OS X? >
It is safe to say that you didn't install a thread manager in your program. Add uses chtreads as one of the first units of your program's usages clause. Vincent _______________________________________________ Lazarus mailing list [email protected] http://www.lazarus.freepascal.org/mailman/listinfo/lazarus
